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
commit8d6ed005a899f48edf0aae41a773e961aeed878b (patch)
tree37e2df7a852ba613cc39ac8af12c579efec3d831 /lisp/disp-table.el
parenta5ee60ae7ecad35e5b91edf500bdf94ca279e826 (diff)
downloademacs-8d6ed005a899f48edf0aae41a773e961aeed878b.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)