]> code.delx.au - gnu-emacs/commitdiff
(Abbrev Expansion): Use \s syntax in example.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Thu, 24 Jul 2003 01:54:54 +0000 (01:54 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Thu, 24 Jul 2003 01:54:54 +0000 (01:54 +0000)
lispref/ChangeLog
lispref/abbrevs.texi

index 41a575819e75dcad4073bd148fc8c91aeb5e7bac..de5c4332e5f7a29067050d3a7bef88ba24a15e6e 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-24  Markus Rost  <rost@math.ohio-state.edu>
+
+       * abbrevs.texi (Abbrev Expansion): Use \s syntax in example.
+
 2003-07-22  Markus Rost  <rost@math.ohio-state.edu>
 
        * internals.texi (Garbage Collection): Fix previous change.
index f549c38d025fd0277e42b88f7b930d2df67b6b29..e7ba0d8e8fa642cfe6c133abf5a5ca68316a538e 100644 (file)
@@ -340,7 +340,7 @@ aborts expansion if it is not confirmed.
 ;; @r{acceptable; the return value has no effect on expansion.}
 
 (defun query-if-not-space ()
-  (if (/= ?\  (preceding-char))
+  (if (/= ?\s  (preceding-char))
       (if (not (y-or-n-p "Do you want to expand this abbrev? "))
           (error "Not expanding this abbrev"))))
 @end smallexample