Mercurial > emacs
changeset 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 | 5412b8112b6e |
children | 343a21c51172 |
files | lisp/disp-table.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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)