1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-31 04:41:23 -08:00

(abbrev--write): Fix error in transcription from C.

This commit is contained in:
Stefan Monnier 2007-11-16 18:27:07 +00:00
parent e85c6b7cee
commit d548715ceb
2 changed files with 3 additions and 1 deletions

View file

@ -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.

View file

@ -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 sym)
(prin1 (symbol-name sym))
(insert " ")
(prin1 (symbol-value sym))
(insert " ")