aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/abbrev.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7eb8ecfa4e3..ab52e8c6f84 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * abbrev.el (abbrev--write): Fix up typo.
4
12007-11-04 Juanma Barranquero <lekktu@gmail.com> 52007-11-04 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * abbrev.el (define-abbrev-table): Doc fix. 7 * 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.
825Presumes that `standard-output' points to `current-buffer'." 825Presumes that `standard-output' points to `current-buffer'."
826 (unless (or (null (symbol-value sym)) (abbrev-get sym :system)) 826 (unless (or (null (symbol-value sym)) (abbrev-get sym :system))
827 (insert " (") 827 (insert " (")
828 (prin1 name) 828 (prin1 sym)
829 (insert " ") 829 (insert " ")
830 (prin1 (symbol-value sym)) 830 (prin1 (symbol-value sym))
831 (insert " ") 831 (insert " ")