changeset 86158:61154518604b

(abbrev--write): Fix error in transcription from C.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 16 Nov 2007 18:27:07 +0000
parents a54bf760b43d
children c679b91efdfa
files lisp/ChangeLog lisp/abbrev.el
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Nov 16 18:07:14 2007 +0000
+++ b/lisp/ChangeLog	Fri Nov 16 18:27:07 2007 +0000
@@ -1,5 +1,7 @@
 2007-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+	* abbrev.el (abbrev--write): Fix error in transcription from C.
+
 	* emulation/pc-select.el (pc-select-shifted-mark): Remove.
 	(pc-select-ensure-mark): Set mark-active to a special value instead.
 	Rename from ensure-mark.  Update call callers.
--- a/lisp/abbrev.el	Fri Nov 16 18:07:14 2007 +0000
+++ b/lisp/abbrev.el	Fri Nov 16 18:27:07 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 sym)
+    (prin1 (symbol-name sym))
     (insert " ")
     (prin1 (symbol-value sym))
     (insert " ")