diff options
| -rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 19 |
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. |
| 1327 | If this does not enumerate all DEFVAR_BOOL variables, the byte-optimizer | 1326 | If this does not enumerate all DEFVAR_BOOL variables, the byte-optimizer |
| 1328 | may generate incorrect code.") | 1327 | may generate incorrect code.") |