Mercurial > emacs
comparison lisp/disp-table.el @ 13794:47cdd806fcfc
(standard-display-european): Test code 161, not 160.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 21 Dec 1995 17:39:04 +0000 |
parents | d628bf92f672 |
children | cbc1f90ea367 |
comparison
equal
deleted
inserted
replaced
13793:b51b78fa556e | 13794:47cdd806fcfc |
---|---|
182 With prefix argument, enable European character display iff arg is positive." | 182 With prefix argument, enable European character display iff arg is positive." |
183 (interactive "P") | 183 (interactive "P") |
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 |
191 (provide 'disp-table) | 193 (provide 'disp-table) |
192 | 194 |