aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/autoarg.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 189f91aa895..25e8dcd0dc3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12000-05-17 Stefan Monnier <monnier@cs.yale.edu>
2
3 * autoarg.el (autoarg-mode): Typo in the :set argument.
4
12000-05-17 Eli Zaretskii <eliz@is.elta.co.il> 52000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
2 6
3 * startup.el (command-line-1): Don't signal an error if the 7 * startup.el (command-line-1): Don't signal an error if the
diff --git a/lisp/autoarg.el b/lisp/autoarg.el
index 57e6b8cfaea..3acf94af210 100644
--- a/lisp/autoarg.el
+++ b/lisp/autoarg.el
@@ -42,7 +42,7 @@
42 "Toggle Autoarg mode. 42 "Toggle Autoarg mode.
43 43
44You must modify via \\[customize] for this variable to have an effect." 44You must modify via \\[customize] for this variable to have an effect."
45 :set (lambda (symbol vaautoarg-mode (or value 0))) 45 :set (lambda (symbol value) (autoarg-mode (or value 0)))
46 :initialize 'custom-initialize-default 46 :initialize 'custom-initialize-default
47 :type 'boolean 47 :type 'boolean
48 :group 'editing 48 :group 'editing