diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-11-05 04:28:32 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-11-05 04:28:32 +0000 |
commit | e486b005a9f863fed5ce7a8a2aec48bae34f4b41 (patch) | |
tree | 85c75c8ea6947322e578ab9cf9fd55f134155470 /lisp/abbrev.el | |
parent | f57a951212c6c363a115eab169fd352510364ed6 (diff) | |
download | emacs-e486b005a9f863fed5ce7a8a2aec48bae34f4b41.tar.gz |
(abbrev--write): Fix up typo.
Diffstat (limited to 'lisp/abbrev.el')
-rw-r--r-- | lisp/abbrev.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 " ") |