aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Rost2003-07-24 01:54:54 +0000
committerMarkus Rost2003-07-24 01:54:54 +0000
commitee59dede1edb15d26762355c6119fbe6a8480ec6 (patch)
treef0f0228dada3d9e617ea7644a9db3b23ce2ab84f
parentabf4bc2e80ddfd1e92fe9603e37efa13db5a016b (diff)
downloademacs-ee59dede1edb15d26762355c6119fbe6a8480ec6.tar.gz
emacs-ee59dede1edb15d26762355c6119fbe6a8480ec6.zip
(Abbrev Expansion): Use \s syntax in example.
-rw-r--r--lispref/ChangeLog4
-rw-r--r--lispref/abbrevs.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 41a575819e7..de5c4332e5f 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12003-07-24 Markus Rost <rost@math.ohio-state.edu>
2
3 * abbrevs.texi (Abbrev Expansion): Use \s syntax in example.
4
12003-07-22 Markus Rost <rost@math.ohio-state.edu> 52003-07-22 Markus Rost <rost@math.ohio-state.edu>
2 6
3 * internals.texi (Garbage Collection): Fix previous change. 7 * internals.texi (Garbage Collection): Fix previous change.
diff --git a/lispref/abbrevs.texi b/lispref/abbrevs.texi
index f549c38d025..e7ba0d8e8fa 100644
--- a/lispref/abbrevs.texi
+++ b/lispref/abbrevs.texi
@@ -340,7 +340,7 @@ aborts expansion if it is not confirmed.
340;; @r{acceptable; the return value has no effect on expansion.} 340;; @r{acceptable; the return value has no effect on expansion.}
341 341
342(defun query-if-not-space () 342(defun query-if-not-space ()
343 (if (/= ?\ (preceding-char)) 343 (if (/= ?\s (preceding-char))
344 (if (not (y-or-n-p "Do you want to expand this abbrev? ")) 344 (if (not (y-or-n-p "Do you want to expand this abbrev? "))
345 (error "Not expanding this abbrev")))) 345 (error "Not expanding this abbrev"))))
346@end smallexample 346@end smallexample