From: Stefan Monnier Date: Mon, 5 Nov 2007 04:28:32 +0000 (+0000) Subject: (abbrev--write): Fix up typo. X-Git-Tag: emacs-pretest-23.0.90~9867 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e486b005a9f863fed5ce7a8a2aec48bae34f4b41;p=emacs.git (abbrev--write): Fix up typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7eb8ecfa4e3..ab52e8c6f84 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-11-05 Stefan Monnier + + * abbrev.el (abbrev--write): Fix up typo. + 2007-11-04 Juanma Barranquero * abbrev.el (define-abbrev-table): Doc fix. diff --git a/lisp/abbrev.el b/lisp/abbrev.el index 65890beef0c..145ec223951 100644 --- a/lisp/abbrev.el +++ b/lisp/abbrev.el @@ -825,7 +825,7 @@ Only writes the non-system abbrevs. 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 " ")