diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-02 19:38:11 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-02 19:38:11 +0000 |
commit | b3c7dfb5d109a4331fe2cb0a3fd5a96bdddea846 (patch) | |
tree | 7b506f62a341c8b56f2e3e2c59c2bb3ae71e39aa /lisp | |
parent | ebc3eb7f29df1835225398f108082ce81b28c856 (diff) | |
download | emacs-b3c7dfb5d109a4331fe2cb0a3fd5a96bdddea846.tar.gz |
(standard-display-european): Map \222 to apostrophe.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/disp-table.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el index 30abfc51d81..788669182d5 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el @@ -202,7 +202,12 @@ does not alter `enable-multibyte-characters'." (standard-display-8bit 160 255) ;; Make non-line-break space display as a plain space. ;; Most X fonts do the wrong thing for code 160. - (aset standard-display-table 160 [32]))) + (aset standard-display-table 160 [32]) + ;; Most Windows programs send out apostrophe's as \222. Most X fonts + ;; don't contain a character at that position. Map it to the ASCII + ;; apostrophe. + (aset standard-display-table 146 [39]) + )) (provide 'disp-table) |