aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term
diff options
context:
space:
mode:
authorPaul Eggert2015-06-25 07:21:20 -0700
committerPaul Eggert2015-06-25 07:22:07 -0700
commitee80c1170916aae1bca62df5ca086fcc13486de1 (patch)
tree802eb2b104466271a198d6763036ea65cf8a21a4 /lisp/term
parent67dbc32afd8af2eaca9fdba9f17680cdcecb178f (diff)
downloademacs-ee80c1170916aae1bca62df5ca086fcc13486de1.tar.gz
emacs-ee80c1170916aae1bca62df5ca086fcc13486de1.zip
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.el2
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 @@
69 ;; Since we changed the terminal encoding, we need to repeat 69 ;; Since we changed the terminal encoding, we need to repeat
70 ;; the test for Unicode quotes being displayable. 70 ;; the test for Unicode quotes being displayable.
71 (dolist (char-repl 71 (dolist (char-repl
72 '((?‘ . [?\']) (?’ . [?\']) (?“ . [?\"]) (?” . [?\"]))) 72 '((?‘ . [?\`]) (?’ . [?\']) (?“ . [?\"]) (?” . [?\"])))
73 (when (not (char-displayable-p (car char-repl))) 73 (when (not (char-displayable-p (car char-repl)))
74 (or standard-display-table 74 (or standard-display-table
75 (setq standard-display-table (make-display-table))) 75 (setq standard-display-table (make-display-table)))