diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-06-25 07:21:20 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-06-25 07:22:07 -0700 |
commit | ee80c1170916aae1bca62df5ca086fcc13486de1 (patch) | |
tree | 802eb2b104466271a198d6763036ea65cf8a21a4 /lisp/term | |
parent | 67dbc32afd8af2eaca9fdba9f17680cdcecb178f (diff) | |
download | emacs-ee80c1170916aae1bca62df5ca086fcc13486de1.tar.gz |
Translate undisplayable ‘ to `
* doc/lispref/help.texi (Keys in Documentation):
* lisp/international/mule-cmds.el (set-locale-environment):
* lisp/term/w32console.el (terminal-init-w32console):
* src/doc.c (Fsubstitute_command_keys, Vhelp_quote_translation):
If ‘ is not displayable, transliterate it to `, not to '. See:
http://lists.gnu.org/archive/html/emacs-devel/2015-06/msg00542.html
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/w32console.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term/w32console.el b/lisp/term/w32console.el index 29ab2f16e1c..2df137839d0 100644 --- a/lisp/term/w32console.el +++ b/lisp/term/w32console.el @@ -69,7 +69,7 @@ ;; Since we changed the terminal encoding, we need to repeat ;; the test for Unicode quotes being displayable. (dolist (char-repl - '((?‘ . [?\']) (?’ . [?\']) (?“ . [?\"]) (?” . [?\"]))) + '((?‘ . [?\`]) (?’ . [?\']) (?“ . [?\"]) (?” . [?\"]))) (when (not (char-displayable-p (car char-repl))) (or standard-display-table (setq standard-display-table (make-display-table))) |