From a8b628107b93fa02b3812d13a4a70afb94dbc6f7 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 11 Dec 2019 20:18:49 -0500 Subject: [PATCH] * lisp/calculator.el (cl-lib): Require at run-time as well. Needed since we pass the `cl-flet` macro to `eval` in `calculator-funcall`. --- lisp/calculator.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: ;;;===================================================================== ;;; Code: -(eval-when-compile (require 'cl-lib)) +(require 'cl-lib) ;;;--------------------------------------------------------------------- ;;; Variables -- 2.39.2