File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 10
10
like ` org-mode ` .
11
11
12
12
* Bug fixes:
13
+ - ` markdown-export ` should not output stderr content to output file
13
14
14
15
* Improvements:
15
16
- Support drag and drop features on Windows and multiple files' drag and drop
16
17
- Added cmark and cmark-gfm to the markdown command list.
17
18
- Disable ` imenu-submenus-on-top ` by default [ GH-882 ] [ ]
18
19
19
20
[ gh-882 ] : https://github.com/jrblevin/markdown-mode/issues/882
21
+ [ gh-891 ] : https://github.com/jrblevin/markdown-mode/issues/891
20
22
21
23
# Markdown Mode 2.7
22
24
Original file line number Diff line number Diff line change @@ -7709,8 +7709,8 @@ Return the name of the output buffer used."
7709
7709
(erase-buffer))
7710
7710
(if (stringp command)
7711
7711
(if (not (null command-args))
7712
- (apply #'call-process-region begin-region end-region command nil buf nil command-args)
7713
- (call-process-region begin-region end-region command nil buf))
7712
+ (apply #'call-process-region begin-region end-region command nil (list buf nil) nil command-args)
7713
+ (call-process-region begin-region end-region command nil (list buf nil) ))
7714
7714
(if markdown-command-needs-filename
7715
7715
(if (not buffer-file-name)
7716
7716
(user-error "Must be visiting a file")
You can’t perform that action at this time.
0 commit comments