(Abbrev Expansion): Use \s syntax in example.

This commit is contained in:
Markus Rost 2003-07-24 01:54:54 +00:00
parent abf4bc2e80
commit ee59dede1e
2 changed files with 5 additions and 1 deletions

View 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.

View 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