From cb765059d7378e8d6b6904c0a73f49fc3f11ff66 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 11 Nov 2001 10:27:32 +0000 Subject: [PATCH] (calc-record-compilation-date-macro): Return a simple `setq' form. --- lisp/calc/calc-macs.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/calc/calc-macs.el b/lisp/calc/calc-macs.el index 1b3ab18e9b..efe37cf49f 100644 --- a/lisp/calc/calc-macs.el +++ b/lisp/calc/calc-macs.el @@ -26,10 +26,9 @@ (defmacro calc-record-compilation-date-macro () - (` (setq calc-installed-date (, (concat (current-time-string) - " by " - (user-full-name))))) -) + `(setq calc-installed-date ,(concat (current-time-string) + " by " + (user-full-name)))) (defmacro calc-wrapper (&rest body) -- 2.39.2