aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-12-21 17:39:04 +0000
committerKarl Heuer1995-12-21 17:39:04 +0000
commite470e6f041db12cd65936ce3d4d1723f41f3efb1 (patch)
tree7569c04350167462633cb768380d6120a995e3fd
parent6f71c5cd11e21851adc901829c585f7c83a9819a (diff)
downloademacs-e470e6f041db12cd65936ce3d4d1723f41f3efb1.tar.gz
emacs-e470e6f041db12cd65936ce3d4d1723f41f3efb1.zip
(standard-display-european): Test code 161, not 160.
-rw-r--r--lisp/disp-table.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el
index 67ecbe87872..6051471b82a 100644
--- a/lisp/disp-table.el
+++ b/lisp/disp-table.el
@@ -184,7 +184,9 @@ With prefix argument, enable European character display iff arg is positive."
184 (if (or (<= (prefix-numeric-value arg) 0) 184 (if (or (<= (prefix-numeric-value arg) 0)
185 (and (null arg) 185 (and (null arg)
186 (char-table-p standard-display-table) 186 (char-table-p standard-display-table)
187 (equal (aref standard-display-table 160) [160]))) 187 ;; Test 161, because sometimes people need to make
188 ;; 160 display as a space.
189 (equal (aref standard-display-table 161) [161])))
188 (standard-display-default 160 255) 190 (standard-display-default 160 255)
189 (standard-display-8bit 160 255))) 191 (standard-display-8bit 160 255)))
190 192