Mercurial > emacs
changeset 85925:a1a283c3bfd3
(abbrev--write): Fix up typo.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 05 Nov 2007 04:28:32 +0000 |
parents | d3269a12bd49 |
children | 025d69230a9b |
files | lisp/ChangeLog lisp/abbrev.el |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Nov 04 23:01:15 2007 +0000 +++ b/lisp/ChangeLog Mon Nov 05 04:28:32 2007 +0000 @@ -1,3 +1,7 @@ +2007-11-05 Stefan Monnier <monnier@iro.umontreal.ca> + + * abbrev.el (abbrev--write): Fix up typo. + 2007-11-04 Juanma Barranquero <lekktu@gmail.com> * abbrev.el (define-abbrev-table): Doc fix.
--- a/lisp/abbrev.el Sun Nov 04 23:01:15 2007 +0000 +++ b/lisp/abbrev.el Mon Nov 05 04:28:32 2007 +0000 @@ -825,7 +825,7 @@ Presumes that `standard-output' points to `current-buffer'." (unless (or (null (symbol-value sym)) (abbrev-get sym :system)) (insert " (") - (prin1 name) + (prin1 sym) (insert " ") (prin1 (symbol-value sym)) (insert " ")