diff options
-rw-r--r-- | lisp/disp-table.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el index 62af3c2d070..5dd76dd4f4b 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el @@ -152,7 +152,7 @@ When enabled, characters in the range of 160 to 255 display not as octal escapes, but as accented characters. With prefix argument, enable European character display iff arg is positive." (interactive "P") - (if (or (< (prefix-numeric-value arg) 0) + (if (or (<= (prefix-numeric-value arg) 0) (and (null arg) (vectorp standard-display-table) (>= (length standard-display-table) 161) |