mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(standard-display-european): Map \222 to apostrophe.
This commit is contained in:
parent
adec06efe9
commit
586a96b83f
1 changed files with 6 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue