From: Andrea Corallo Date: Sat, 2 Nov 2019 16:32:42 +0000 (+0100) Subject: add top-level-forms slot into comp-ctxt (replace old specific defvar one) X-Git-Tag: emacs-28.0.90~2727^2~1043 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fb41165adf7c6a354876a26fd7a6cc686f3fe142;p=emacs.git add top-level-forms slot into comp-ctxt (replace old specific defvar one) --- diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index e76e68c31bd..c52cef6e94f 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -116,8 +116,8 @@ Can be used by code that wants to expand differently in this case.") "Lisp side of the compiler context." (output nil :type string :documentation "Target output filename for the compilation.") - (top-level-defvars nil :type list - :documentation "List of top level form to be exp.") + (top-level-forms () :type list + :documentation "List of spilled top level forms.") (exp-funcs () :type list :documentation "Exported functions list.") (funcs-h (make-hash-table) :type hash-table