aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-04 02:28:54 +0000
committerJuanma Barranquero2005-07-04 02:28:54 +0000
commitedf959f9d0144e976aada048d37381be494ab29d (patch)
tree2ec5df28ae185928a73d42f93d755b385440beeb
parent51616cd510583c9870538ce6d020a8148b80706d (diff)
downloademacs-edf959f9d0144e976aada048d37381be494ab29d.tar.gz
emacs-edf959f9d0144e976aada048d37381be494ab29d.zip
(shell): Finish `defgroup' description with period.
(shell-directories, shell-faces, shell-file-name-quote-list): "?\ " -> "?\s".
-rw-r--r--lisp/shell.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index 7a9f261859d..a8f4790a054 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -108,16 +108,16 @@
108;;; Customization and Buffer Variables 108;;; Customization and Buffer Variables
109 109
110(defgroup shell nil 110(defgroup shell nil
111 "Running shell from within Emacs buffers" 111 "Running shell from within Emacs buffers."
112 :group 'processes 112 :group 'processes
113 :group 'unix) 113 :group 'unix)
114 114
115(defgroup shell-directories nil 115(defgroup shell-directories nil
116 "Directory support in shell mode" 116 "Directory support in shell mode."
117 :group 'shell) 117 :group 'shell)
118 118
119(defgroup shell-faces nil 119(defgroup shell-faces nil
120 "Faces in shell buffers" 120 "Faces in shell buffers."
121 :group 'shell) 121 :group 'shell)
122 122
123;;;###autoload 123;;;###autoload
@@ -178,7 +178,7 @@ This is a fine thing to set in your `.emacs' file.")
178(defvar shell-file-name-quote-list 178(defvar shell-file-name-quote-list
179 (if (memq system-type '(ms-dos windows-nt)) 179 (if (memq system-type '(ms-dos windows-nt))
180 nil 180 nil
181 (append shell-delimiter-argument-list '(?\ ?\* ?\! ?\" ?\' ?\` ?\# ?\\))) 181 (append shell-delimiter-argument-list '(?\s ?\* ?\! ?\" ?\' ?\` ?\# ?\\)))
182 "List of characters to quote when in a file name. 182 "List of characters to quote when in a file name.
183This variable is used to initialize `comint-file-name-quote-list' in the 183This variable is used to initialize `comint-file-name-quote-list' in the
184shell buffer. The value may depend on the operating system or shell. 184shell buffer. The value may depend on the operating system or shell.