summaryrefslogtreecommitdiff
path: root/lisp/disp-table.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-06-07 18:02:08 +0000
committerRichard M. Stallman <rms@gnu.org>1994-06-07 18:02:08 +0000
commitc3a14a2bcf428118c788eddc0387f3879c47acb2 (patch)
tree95da34dfa7b8549668b9826cbcbbd1e873f4d882 /lisp/disp-table.el
parent23553df06a6c703e240268e31a0c217ae7d51e8d (diff)
downloademacs-c3a14a2bcf428118c788eddc0387f3879c47acb2.tar.gz
(standard-display-european): Treat 0 arg like negative.
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r--lisp/disp-table.el2
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)