diff options
| author | Eli Zaretskii | 2004-06-26 09:46:19 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2004-06-26 09:46:19 +0000 |
| commit | 00170b0d63e7db58e7ca49defa98e41fb4ec504f (patch) | |
| tree | bb3e980e9cda6e6d31161bcfa5d2fa816b7b70bb | |
| parent | ad8a607d41dc47eb84a845a704957bcb75b55a48 (diff) | |
| download | emacs-00170b0d63e7db58e7ca49defa98e41fb4ec504f.tar.gz emacs-00170b0d63e7db58e7ca49defa98e41fb4ec504f.zip | |
(Man-getpage-in-background): Add windows-nt to the list
of systems where shell-file-name should be used instead of
literal "sh".
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/man.el | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ed392b3a20f..8be0e2bb3dd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2004-06-26 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * man.el (Man-getpage-in-background): Add windows-nt to the list | ||
| 4 | of systems where shell-file-name should be used instead of | ||
| 5 | literal "sh". | ||
| 6 | |||
| 1 | 2004-06-25 Sam Steingold <sds@gnu.org> | 7 | 2004-06-25 Sam Steingold <sds@gnu.org> |
| 2 | 8 | ||
| 3 | * add-log.el (change-log-font-lock-keywords): Support Common Lisp | 9 | * add-log.el (change-log-font-lock-keywords): Support Common Lisp |
diff --git a/lisp/man.el b/lisp/man.el index 5a07045dda9..cbfae21e44b 100644 --- a/lisp/man.el +++ b/lisp/man.el | |||
| @@ -733,7 +733,9 @@ all sections related to a subject, put something appropriate into the | |||
| 733 | (if (fboundp 'start-process) | 733 | (if (fboundp 'start-process) |
| 734 | (set-process-sentinel | 734 | (set-process-sentinel |
| 735 | (start-process manual-program buffer | 735 | (start-process manual-program buffer |
| 736 | (if (eq system-type 'cygwin) shell-file-name "sh") | 736 | (if (memq system-type '(cygwin windows-nt)) |
| 737 | shell-file-name | ||
| 738 | "sh") | ||
| 737 | shell-command-switch | 739 | shell-command-switch |
| 738 | (format (Man-build-man-command) man-args)) | 740 | (format (Man-build-man-command) man-args)) |
| 739 | 'Man-bgproc-sentinel) | 741 | 'Man-bgproc-sentinel) |