]> git.eshelyaron.com Git - emacs.git/commitdiff
add top-level-forms slot into comp-ctxt (replace old specific defvar one)
authorAndrea Corallo <akrl@sdf.org>
Sat, 2 Nov 2019 16:32:42 +0000 (17:32 +0100)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:38:00 +0000 (11:38 +0100)
lisp/emacs-lisp/comp.el

index e76e68c31bdf52a8b109565e72b0feadb06bf9bd..c52cef6e94f75f30f164e4a186774dabd06332a1 100644 (file)
@@ -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