diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-12-21 17:39:04 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-12-21 17:39:04 +0000 |
commit | e470e6f041db12cd65936ce3d4d1723f41f3efb1 (patch) | |
tree | 7569c04350167462633cb768380d6120a995e3fd /lisp/disp-table.el | |
parent | 6f71c5cd11e21851adc901829c585f7c83a9819a (diff) | |
download | emacs-e470e6f041db12cd65936ce3d4d1723f41f3efb1.tar.gz |
(standard-display-european): Test code 161, not 160.
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r-- | lisp/disp-table.el | 4 |
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." (if (or (<= (prefix-numeric-value arg) 0) (and (null arg) (char-table-p standard-display-table) - (equal (aref standard-display-table 160) [160]))) + ;; Test 161, because sometimes people need to make + ;; 160 display as a space. + (equal (aref standard-display-table 161) [161]))) (standard-display-default 160 255) (standard-display-8bit 160 255))) |