From e470e6f041db12cd65936ce3d4d1723f41f3efb1 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 21 Dec 1995 17:39:04 +0000 Subject: [PATCH] (standard-display-european): Test code 161, not 160. --- lisp/disp-table.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/disp-table.el b/lisp/disp-table.el index 67ecbe87872..6051471b82a 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el @@ -184,7 +184,9 @@ With prefix argument, enable European character display iff arg is positive." (if (or (<= (prefix-numeric-value arg) 0) (and (null arg) (char-table-p standard-display-table) - (equal (aref standard-display-table 160) [160]))) + ;; Test 161, because sometimes people need to make + ;; 160 display as a space. + (equal (aref standard-display-table 161) [161]))) (standard-display-default 160 255) (standard-display-8bit 160 255))) -- 2.39.2