Mercurial > emacs
changeset 19679:77c1c650932b
(standard-display-european): Map \222 to apostrophe.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Tue, 02 Sep 1997 19:38:11 +0000 |
parents | aee700a39aea |
children | 90127e640713 |
files | lisp/disp-table.el |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/disp-table.el Tue Sep 02 19:37:39 1997 +0000 +++ b/lisp/disp-table.el Tue Sep 02 19:38:11 1997 +0000 @@ -202,7 +202,12 @@ (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)