1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-26 19:18:50 +00:00

(shell-command): Remove space after `:' in mode-line-process.

This commit is contained in:
Richard M. Stallman 1994-04-24 08:17:05 +00:00
parent f66d964cae
commit 3f655c8ae8

View File

@ -700,7 +700,7 @@ This cannot be done asynchronously."
(setq default-directory directory)
(setq proc (start-process "Shell" buffer
shell-file-name "-c" command))
(setq mode-line-process '(": %s"))
(setq mode-line-process '(":%s"))
(set-process-sentinel proc 'shell-command-sentinel)
(set-process-filter proc 'shell-command-filter)
))