diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/calc/calc.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index b9bdc0fd8dc..553bdc9c6ed 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -494,6 +494,7 @@ This setting only applies to floats in normal display mode.") (defmacro defcalcmodevar (var defval &optional doc) "Declare VAR as a Calc variable, with default value DEFVAL and doc-string DOC. The variable VAR will be added to `calc-mode-var-list'." + (declare (doc-string 3)) `(progn (defvar ,var ,defval ,doc) (add-to-list 'calc-mode-var-list (list (quote ,var) ,defval)))) |