Variable: byte-optimize--vars-outside-loop
byte-optimize--vars-outside-loop is a variable defined in
byte-opt.el.gz.
Value
nil
Documentation
Alist of variables lexically bound outside the innermost while loop.
Variables here are sensitive to mutation inside the loop, since this can
occur an indeterminate number of times and thus have effect on code
sequentially preceding the mutation itself.
Same format as byte-optimize--lexvars, with shared structure and contents.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/byte-opt.el.gz
;;; implementing source-level optimizers
(defvar byte-optimize--vars-outside-loop nil
"Alist of variables lexically bound outside the innermost `while' loop.
Variables here are sensitive to mutation inside the loop, since this can
occur an indeterminate number of times and thus have effect on code
sequentially preceding the mutation itself.
Same format as `byte-optimize--lexvars', with shared structure and contents.")