diff options
| -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." | |||
| 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 | ||