diff lisp/disp-table.el @ 7830:1f9ae5be19a2

(standard-display-european): Treat 0 arg like negative.
author Richard M. Stallman <rms@gnu.org>
date Tue, 07 Jun 1994 18:02:08 +0000
parents cc7cd83ccf3f
children 45e6d5476e7f
line wrap: on
line diff
--- a/lisp/disp-table.el	Tue Jun 07 17:58:32 1994 +0000
+++ b/lisp/disp-table.el	Tue Jun 07 18:02:08 1994 +0000
@@ -152,7 +152,7 @@
 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)