diff options
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | lispref/abbrevs.texi | 2 | 
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 @@ +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. 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.  ;; @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 | 
