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:
parent
23553df06a
commit
c3a14a2bcf
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user