aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-11-11 10:27:32 +0000
committerEli Zaretskii2001-11-11 10:27:32 +0000
commitcb765059d7378e8d6b6904c0a73f49fc3f11ff66 (patch)
treea5d65e0188632a1271a0a57cf34534a06a55f8e4
parentf20be8fee3805abd394fc03f97426a08f8be9646 (diff)
downloademacs-cb765059d7378e8d6b6904c0a73f49fc3f11ff66.tar.gz
emacs-cb765059d7378e8d6b6904c0a73f49fc3f11ff66.zip
(calc-record-compilation-date-macro): Return a
simple `setq' form.
-rw-r--r--lisp/calc/calc-macs.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/calc/calc-macs.el b/lisp/calc/calc-macs.el
index 1b3ab18e9b6..efe37cf49f9 100644
--- a/lisp/calc/calc-macs.el
+++ b/lisp/calc/calc-macs.el
@@ -26,10 +26,9 @@
26 26
27 27
28(defmacro calc-record-compilation-date-macro () 28(defmacro calc-record-compilation-date-macro ()
29 (` (setq calc-installed-date (, (concat (current-time-string) 29 `(setq calc-installed-date ,(concat (current-time-string)
30 " by " 30 " by "
31 (user-full-name))))) 31 (user-full-name))))
32)
33 32
34 33
35(defmacro calc-wrapper (&rest body) 34(defmacro calc-wrapper (&rest body)