From c3a14a2bcf428118c788eddc0387f3879c47acb2 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 7 Jun 1994 18:02:08 +0000 Subject: [PATCH] (standard-display-european): Treat 0 arg like negative. --- lisp/disp-table.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5