aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/calc/calc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index 173785dc912..27623907d45 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -1131,7 +1131,7 @@ Notations: 3.14e6 3.14 * 10^6
1131 (string-match "full" (nth 1 p)) 1131 (string-match "full" (nth 1 p))
1132 (setq calc-standalone-flag t)) 1132 (setq calc-standalone-flag t))
1133 (setq p (cdr p)))) 1133 (setq p (cdr p))))
1134 (run-hooks 'calc-mode-hook) 1134 (run-mode-hooks 'calc-mode-hook)
1135 (calc-refresh t) 1135 (calc-refresh t)
1136 (calc-set-mode-line) 1136 (calc-set-mode-line)
1137 (calc-check-defines)) 1137 (calc-check-defines))
@@ -1181,7 +1181,7 @@ commands given here will actually operate on the *Calculator* stack."
1181 (insert (propertize (concat "Emacs Calculator v" calc-version 1181 (insert (propertize (concat "Emacs Calculator v" calc-version
1182 " by Dave Gillespie\n") 1182 " by Dave Gillespie\n")
1183 'font-lock-face 'italic)))) 1183 'font-lock-face 'italic))))
1184 (run-hooks 'calc-trail-mode-hook)) 1184 (run-mode-hooks 'calc-trail-mode-hook))
1185 1185
1186(defun calc-create-buffer () 1186(defun calc-create-buffer ()
1187 (set-buffer (get-buffer-create "*Calculator*")) 1187 (set-buffer (get-buffer-create "*Calculator*"))