aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-01-16 16:18:32 +0000
committerJuanma Barranquero2008-01-16 16:18:32 +0000
commit6b588eb77e2c53e7045ac9be4d1864563f11674d (patch)
treeb5d8f87a606804dd68f5ac72c0c0d129e1ae81fb
parentd7cd2d8b4eb0e0b0e2bbe77d2fe48d4a0c353055 (diff)
downloademacs-6b588eb77e2c53e7045ac9be4d1864563f11674d.tar.gz
emacs-6b588eb77e2c53e7045ac9be4d1864563f11674d.zip
(whitespace-check-leading-whitespace, whitespace-check-trailing-whitespace,
whitespace-check-spacetab-whitespace, whitespace-check-indent-whitespace, whitespace-check-ateol-whitespace): Fix typos in docstrings.
-rw-r--r--lisp/whitespace.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el
index d9aad2a2eea..a250f24ddaa 100644
--- a/lisp/whitespace.el
+++ b/lisp/whitespace.el
@@ -171,21 +171,21 @@ don't define it."
171 171
172(defcustom whitespace-check-leading-whitespace t 172(defcustom whitespace-check-leading-whitespace t
173 "Flag to check leading whitespace. This is the global for the system. 173 "Flag to check leading whitespace. This is the global for the system.
174It can be overriden by setting a buffer local variable 174It can be overridden by setting a buffer local variable
175`whitespace-check-buffer-leading'." 175`whitespace-check-buffer-leading'."
176 :type 'boolean 176 :type 'boolean
177 :group 'whitespace) 177 :group 'whitespace)
178 178
179(defcustom whitespace-check-trailing-whitespace t 179(defcustom whitespace-check-trailing-whitespace t
180 "Flag to check trailing whitespace. This is the global for the system. 180 "Flag to check trailing whitespace. This is the global for the system.
181It can be overriden by setting a buffer local variable 181It can be overridden by setting a buffer local variable
182`whitespace-check-buffer-trailing'." 182`whitespace-check-buffer-trailing'."
183 :type 'boolean 183 :type 'boolean
184 :group 'whitespace) 184 :group 'whitespace)
185 185
186(defcustom whitespace-check-spacetab-whitespace t 186(defcustom whitespace-check-spacetab-whitespace t
187 "Flag to check space followed by a TAB. This is the global for the system. 187 "Flag to check space followed by a TAB. This is the global for the system.
188It can be overriden by setting a buffer local variable 188It can be overridden by setting a buffer local variable
189`whitespace-check-buffer-spacetab'." 189`whitespace-check-buffer-spacetab'."
190 :type 'boolean 190 :type 'boolean
191 :group 'whitespace) 191 :group 'whitespace)
@@ -197,7 +197,7 @@ It can be overriden by setting a buffer local variable
197 197
198(defcustom whitespace-check-indent-whitespace indent-tabs-mode 198(defcustom whitespace-check-indent-whitespace indent-tabs-mode
199 "Flag to check indentation whitespace. This is the global for the system. 199 "Flag to check indentation whitespace. This is the global for the system.
200It can be overriden by setting a buffer local variable 200It can be overridden by setting a buffer local variable
201`whitespace-check-buffer-indent'." 201`whitespace-check-buffer-indent'."
202 :type 'boolean 202 :type 'boolean
203 :group 'whitespace) 203 :group 'whitespace)
@@ -210,7 +210,7 @@ The default value ignores leading TABs."
210 210
211(defcustom whitespace-check-ateol-whitespace t 211(defcustom whitespace-check-ateol-whitespace t
212 "Flag to check end-of-line whitespace. This is the global for the system. 212 "Flag to check end-of-line whitespace. This is the global for the system.
213It can be overriden by setting a buffer local variable 213It can be overridden by setting a buffer local variable
214`whitespace-check-buffer-ateol'." 214`whitespace-check-buffer-ateol'."
215 :type 'boolean 215 :type 'boolean
216 :group 'whitespace) 216 :group 'whitespace)