aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2019-12-11 20:18:49 -0500
committerStefan Monnier2019-12-11 20:18:49 -0500
commita8b628107b93fa02b3812d13a4a70afb94dbc6f7 (patch)
tree8baf36bf83c8cdcdcc40c5b2b178aa95a924129f
parent47a767c24e9cc4323432e29103b0a2cc46f8f3e4 (diff)
downloademacs-a8b628107b93fa02b3812d13a4a70afb94dbc6f7.tar.gz
emacs-a8b628107b93fa02b3812d13a4a70afb94dbc6f7.zip
* lisp/calculator.el (cl-lib): Require at run-time as well.
Needed since we pass the `cl-flet` macro to `eval` in `calculator-funcall`.
-rw-r--r--lisp/calculator.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calculator.el b/lisp/calculator.el
index 6c07ee2225d..008220ced26 100644
--- a/lisp/calculator.el
+++ b/lisp/calculator.el
@@ -240,7 +240,7 @@ Examples:
240;;;===================================================================== 240;;;=====================================================================
241;;; Code: 241;;; Code:
242 242
243(eval-when-compile (require 'cl-lib)) 243(require 'cl-lib)
244 244
245;;;--------------------------------------------------------------------- 245;;;---------------------------------------------------------------------
246;;; Variables 246;;; Variables