1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

(standard-display-european): Treat 0 arg like negative.

This commit is contained in:
Richard M. Stallman 1994-06-07 18:02:08 +00:00
parent 23553df06a
commit c3a14a2bcf

View File

@ -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)