so that repeating the command toggles again.
+2001-12-21 Richard M. Stallman <rms@gnu.org>
+
+ * emacs-lisp/easy-mmode.el (define-minor-mode):
+ Make no arg by default in an interactive call,
+ so that repeating the command toggles again.
+
+ * emacs-lisp/lisp-mode.el (eval-defun-1): Cope with atoms as args.
+
2001-12-18 Dave Love <fx@gnu.org>
* progmodes/f90.el (f90-break-line): Avoid infinite recursion
With universal prefix ARG " (unless togglep "(or if ARG is nil) ") "turn mode on.
With zero or negative ARG turn mode off.
\\{%s}") pretty-name keymap-sym))
- (interactive (list (or current-prefix-arg (if ,mode 0 1))))
+ ;; Make no arg by default in an interactive call,
+ ;; so that repeating the command toggles again.
+ (interactive)
(setq ,mode
(if arg
(> (prefix-numeric-value arg) 0)