comparison lisp/emacs-lisp/byte-opt.el @ 22241:0a93e911af6b

(byte-boolean-vars): Add print-escape-nonascii.
author Richard M. Stallman <rms@gnu.org>
date Mon, 25 May 1998 20:31:58 +0000
parents b52cdd6c996e
children 4d30e6829d13
comparison
equal deleted inserted replaced
22240:4e4c377f3310 22241:0a93e911af6b
1369 ;;; we break the program, because it will appear that pop-up-windows and 1369 ;;; we break the program, because it will appear that pop-up-windows and
1370 ;;; old-pop-ups are not EQ when really they are. So we have to know what 1370 ;;; old-pop-ups are not EQ when really they are. So we have to know what
1371 ;;; the BOOL variables are, and not perform this optimization on them. 1371 ;;; the BOOL variables are, and not perform this optimization on them.
1372 ;;; 1372 ;;;
1373 (defconst byte-boolean-vars 1373 (defconst byte-boolean-vars
1374 '(abbrev-all-caps abbrevs-changed byte-metering-on 1374 '(abbrev-all-caps abbrevs-changed byte-debug-flag byte-metering-on
1375 cannot-suspend completion-auto-help completion-ignore-case 1375 cannot-suspend check-markers-debug-flag completion-auto-help
1376 cursor-in-echo-area debug-on-next-call debug-on-quit 1376 completion-ignore-case cursor-in-echo-area debug-on-next-call
1377 delete-exited-processes enable-recursive-minibuffers 1377 debug-on-quit delete-exited-processes enable-recursive-minibuffers
1378 highlight-nonselected-windows indent-tabs-mode inhibit-local-menu-bar-menus 1378 garbage-collection-messages highlight-nonselected-windows
1379 insert-default-directory inverse-video load-force-doc-strings 1379 indent-tabs-mode inherit-process-coding-system inhibit-eol-conversion
1380 load-in-progress menu-prompting minibuffer-auto-raise 1380 inhibit-local-menu-bar-menus insert-default-directory inverse-video
1381 mode-line-inverse-video multiple-frames no-redraw-on-reenter noninteractive 1381 keyword-symbols-constant-flag load-convert-to-unibyte
1382 parse-sexp-ignore-comments pop-up-frames pop-up-windows 1382 load-force-doc-strings load-in-progress menu-prompting
1383 print-escape-newlines system-uses-terminfo truncate-partial-width-windows 1383 minibuffer-allow-text-properties minibuffer-auto-raise
1384 mode-line-inverse-video multiple-frames no-redraw-on-reenter
1385 noninteractive parse-sexp-ignore-comments parse-sexp-lookup-properties
1386 pop-up-frames pop-up-windows print-escape-newlines
1387 print-escape-nonascii print-quoted scroll-preserve-screen-position
1388 system-uses-terminfo truncate-partial-width-windows use-dialog-box
1384 visible-bell vms-stmlf-recfm words-include-escapes) 1389 visible-bell vms-stmlf-recfm words-include-escapes)
1385 "DEFVAR_BOOL variables. Giving these any non-nil value sets them to t. 1390 "DEFVAR_BOOL variables. Giving these any non-nil value sets them to t.
1386 If this does not enumerate all DEFVAR_BOOL variables, the byte-optimizer 1391 If this does not enumerate all DEFVAR_BOOL variables, the byte-optimizer
1387 may generate incorrect code.") 1392 may generate incorrect code.")
1388 1393