1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(Man-getpage-in-background): Add windows-nt to the list

of systems where shell-file-name should be used instead of
literal "sh".
This commit is contained in:
Eli Zaretskii 2004-06-26 09:46:19 +00:00
parent ad8a607d41
commit 00170b0d63
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2004-06-26 Eli Zaretskii <eliz@gnu.org>
* man.el (Man-getpage-in-background): Add windows-nt to the list
of systems where shell-file-name should be used instead of
literal "sh".
2004-06-25 Sam Steingold <sds@gnu.org>
* add-log.el (change-log-font-lock-keywords): Support Common Lisp

View File

@ -733,7 +733,9 @@ all sections related to a subject, put something appropriate into the
(if (fboundp 'start-process)
(set-process-sentinel
(start-process manual-program buffer
(if (eq system-type 'cygwin) shell-file-name "sh")
(if (memq system-type '(cygwin windows-nt))
shell-file-name
"sh")
shell-command-switch
(format (Man-build-man-command) man-args))
'Man-bgproc-sentinel)