]> git.eshelyaron.com Git - emacs.git/commitdiff
(standard-display-european): Map \222 to apostrophe.
authorGeoff Voelker <voelker@cs.washington.edu>
Tue, 2 Sep 1997 19:38:11 +0000 (19:38 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Tue, 2 Sep 1997 19:38:11 +0000 (19:38 +0000)
lisp/disp-table.el

index 30abfc51d819fa8afb498c02e51bc158ed556e12..788669182d534fc5ad0763858693d24c2c4878d2 100644 (file)
@@ -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)