aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Naggum1995-09-21 22:03:57 +0000
committerErik Naggum1995-09-21 22:03:57 +0000
commit151b6496e003739f70fd26c8b45d32af19154c43 (patch)
tree8eb70119fcaf5b1991de5ad5454559a609cdc4dd
parent9574d70f1bd89c2bcdc466cedc2a142113c4eeb3 (diff)
downloademacs-151b6496e003739f70fd26c8b45d32af19154c43.tar.gz
emacs-151b6496e003739f70fd26c8b45d32af19154c43.zip
(byte-boolean-vars): Update list to reflect actual DEFVAR_BOOL symbols in
the C code.
-rw-r--r--lisp/emacs-lisp/byte-opt.el19
1 files changed, 9 insertions, 10 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el
index 9d69a2fc75e..41ebdd8584d 100644
--- a/lisp/emacs-lisp/byte-opt.el
+++ b/lisp/emacs-lisp/byte-opt.el
@@ -1312,17 +1312,16 @@
1312;;; 1312;;;
1313(defconst byte-boolean-vars 1313(defconst byte-boolean-vars
1314 '(abbrev-all-caps abbrevs-changed byte-metering-on 1314 '(abbrev-all-caps abbrevs-changed byte-metering-on
1315 check-protected-fields completion-auto-help completion-ignore-case 1315 cannot-suspend completion-auto-help completion-ignore-case
1316 cursor-in-echo-area debug-on-next-call debug-on-quit 1316 cursor-in-echo-area debug-on-next-call debug-on-quit
1317 defining-kbd-macro delete-exited-processes 1317 delete-exited-processes enable-recursive-minibuffers
1318 enable-recursive-minibuffers 1318 highlight-nonselected-windows indent-tabs-mode inhibit-local-menu-bar-menus
1319 highlight-nonselected-windows indent-tabs-mode 1319 insert-default-directory inverse-video load-force-doc-strings
1320 insert-default-directory inverse-video load-in-progress 1320 load-in-progress menu-prompting minibuffer-auto-raise
1321 menu-prompting mode-line-inverse-video no-redraw-on-reenter 1321 mode-line-inverse-video multiple-frames no-redraw-on-reenter noninteractive
1322 noninteractive parse-sexp-ignore-comments pop-up-frames 1322 parse-sexp-ignore-comments pop-up-frames pop-up-windows
1323 pop-up-windows print-escape-newlines print-escape-newlines 1323 print-escape-newlines system-uses-terminfo truncate-partial-width-windows
1324 truncate-partial-width-windows visible-bell vms-stmlf-recfm 1324 visible-bell vms-stmlf-recfm words-include-escapes)
1325 words-include-escapes x-save-under)
1326 "DEFVAR_BOOL variables. Giving these any non-nil value sets them to t. 1325 "DEFVAR_BOOL variables. Giving these any non-nil value sets them to t.
1327If this does not enumerate all DEFVAR_BOOL variables, the byte-optimizer 1326If this does not enumerate all DEFVAR_BOOL variables, the byte-optimizer
1328may generate incorrect code.") 1327may generate incorrect code.")