mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Setup quote display only if interactive
* lisp/startup.el (command-line): Skip call to startup--setup-quote-display if noninteractive. Without this change, python-shell-prompt-validate-regexps-1 fails in test/automated/python-tests.el when run in an en_US.utf8 locale on Fedora.
This commit is contained in:
parent
fea1e883c4
commit
72aae7326b
1 changed files with 3 additions and 2 deletions
|
|
@ -1026,8 +1026,9 @@ please check its value")
|
|||
'("no" "off" "false" "0")))))
|
||||
(setq no-blinking-cursor t))
|
||||
|
||||
(startup--setup-quote-display)
|
||||
(setq internal--text-quoting-flag t)
|
||||
(unless noninteractive
|
||||
(startup--setup-quote-display)
|
||||
(setq internal--text-quoting-flag t))
|
||||
|
||||
;; Re-evaluate predefined variables whose initial value depends on
|
||||
;; the runtime context.
|
||||
|
|
|
|||
Loading…
Reference in a new issue