aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-02-13 15:56:09 +0000
committerJuanma Barranquero2003-02-13 15:56:09 +0000
commit70ea295a116779697e528814626f7ef5bf9e3e94 (patch)
tree7961c5c60114c0f47f9a7676a953fe04666174fc
parente6bba95eca2673a3c01c010d012503c261c4854c (diff)
downloademacs-70ea295a116779697e528814626f7ef5bf9e3e94.tar.gz
emacs-70ea295a116779697e528814626f7ef5bf9e3e94.zip
Use new ?\s syntax instead of "? " followed by a comment.
-rw-r--r--lisp/international/characters.el2
-rw-r--r--lisp/ruler-mode.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/characters.el b/lisp/international/characters.el
index 32f2de5e22f..23c38985ac7 100644
--- a/lisp/international/characters.el
+++ b/lisp/international/characters.el
@@ -83,7 +83,7 @@
83(define-category ?| "While filling, we can break a line at this character.") 83(define-category ?| "While filling, we can break a line at this character.")
84 84
85;; For indentation calculation. 85;; For indentation calculation.
86(define-category ? ; Comment to protect space from deletion 86(define-category ?\s
87 "This character counts as a space for indentation purposes.") 87 "This character counts as a space for indentation purposes.")
88 88
89;; Keep the following for `kinsoku' processing. See comments in 89;; Keep the following for `kinsoku' processing. See comments in
diff --git a/lisp/ruler-mode.el b/lisp/ruler-mode.el
index dc585a85118..5e839aff43c 100644
--- a/lisp/ruler-mode.el
+++ b/lisp/ruler-mode.el
@@ -179,7 +179,7 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
179 (integer :tag "Integer char value" 179 (integer :tag "Integer char value"
180 :validate ruler-mode-character-validate))) 180 :validate ruler-mode-character-validate)))
181 181
182(defcustom ruler-mode-margins-char ?\ ; Comment to protect space from deletion 182(defcustom ruler-mode-margins-char ?\s
183 "*Character used in margin areas." 183 "*Character used in margin areas."
184 :group 'ruler-mode 184 :group 'ruler-mode
185 :type '(choice 185 :type '(choice