aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Corallo2019-09-05 21:16:42 +0200
committerAndrea Corallo2020-01-01 11:37:43 +0100
commitff7093d74b51f094b65314e3567fc96a3a37ffdf (patch)
treee2e912dc0cf08bcef7b2bb751a356d0269b884cc
parentc05d414844f6e1e0af05ef0cbcabe3313f5089d0 (diff)
downloademacs-ff7093d74b51f094b65314e3567fc96a3a37ffdf.tar.gz
emacs-ff7093d74b51f094b65314e3567fc96a3a37ffdf.zip
some order into special vars
-rw-r--r--lisp/emacs-lisp/bytecomp.el5
-rw-r--r--lisp/emacs-lisp/comp.el1
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index fa3f5a7f9b9..ca7c67e6907 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -560,10 +560,13 @@ outputting warnings about functions not being defined at runtime.")
560(defvar byte-compile-output nil 560(defvar byte-compile-output nil
561 "Alist describing contents to put in byte code string. 561 "Alist describing contents to put in byte code string.
562Each element is (INDEX . VALUE)") 562Each element is (INDEX . VALUE)")
563(defvar byte-compile-lap-output nil)
564(defvar byte-compile-depth 0 "Current depth of execution stack.") 563(defvar byte-compile-depth 0 "Current depth of execution stack.")
565(defvar byte-compile-maxdepth 0 "Maximum depth of execution stack.") 564(defvar byte-compile-maxdepth 0 "Maximum depth of execution stack.")
566 565
566;; These are use by comp.el to spill lap
567(defvar byte-compile-spilling-lap nil)
568(defvar byte-compile-lap-output nil)
569
567 570
568;;; The byte codes; this information is duplicated in bytecomp.c 571;;; The byte codes; this information is duplicated in bytecomp.c
569 572
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 23cf7317d2e..6d9ff8d5156 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -47,7 +47,6 @@
47 47
48;; FIXME these has to be removed 48;; FIXME these has to be removed
49(defvar comp-speed 2) 49(defvar comp-speed 2)
50(defvar byte-compile-lap-output)
51 50
52(defvar comp-pass nil 51(defvar comp-pass nil
53 "Every pass has the right to bind what it likes here.") 52 "Every pass has the right to bind what it likes here.")