diff options
author | K. Handa <handa@gnu.org> | 2015-09-02 18:28:54 +0900 |
---|---|---|
committer | K. Handa <handa@gnu.org> | 2015-09-02 18:28:54 +0900 |
commit | e7b62736aade24620c8ba6fa6bd467d017f16ee0 (patch) | |
tree | d00a2203437a168b2414c6b73afc00a88d90b4b1 /lisp/startup.el | |
parent | ae08d073d7e2738580341534adc3c5924dc76860 (diff) | |
parent | 30866274e21c5f0a1c5f60cfe290743e7d482349 (diff) | |
download | emacs-e7b62736aade24620c8ba6fa6bd467d017f16ee0.tar.gz emacs-e7b62736aade24620c8ba6fa6bd467d017f16ee0.tar.bz2 emacs-e7b62736aade24620c8ba6fa6bd467d017f16ee0.zip |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'lisp/startup.el')
-rw-r--r-- | lisp/startup.el | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 8c63ed263c2..b5e258f56c0 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -803,6 +803,15 @@ to prepare for opening the first frame (e.g. open a connection to an X server)." (defvar server-name) (defvar server-process) +(defun startup--setup-quote-display () + "If curved quotes don't work, display ASCII approximations." + (dolist (char-repl '((?‘ . ?\`) (?’ . ?\') (?“ . ?\") (?” . ?\"))) + (when (not (char-displayable-p (car char-repl))) + (unless standard-display-table + (setq standard-display-table (make-display-table))) + (aset standard-display-table (car char-repl) + (vector (make-glyph-code (cdr char-repl) 'shadow)))))) + (defun command-line () "A subroutine of `normal-top-level'. Amongst another things, it parses the command-line arguments." @@ -1017,13 +1026,9 @@ please check its value") '("no" "off" "false" "0"))))) (setq no-blinking-cursor t)) - ;; If curved quotes don't work, display ASCII approximations. - (dolist (char-repl '((?‘ . [?\`]) (?’ . [?\']) (?“ . [?\"]) (?” . [?\"]))) - (when (not (char-displayable-p (car char-repl))) - (or standard-display-table - (setq standard-display-table (make-display-table))) - (aset standard-display-table (car char-repl) (cdr char-repl)))) - (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. |