# HG changeset patch # User Richard M. Stallman # Date 819703971 0 # Node ID cbc1f90ea3673ef45a932d9bb87e974e19d51909 # Parent 4d2bf17e763141070f1fe15da795d8b468c3971e (standard-display-european): Make 160 display as space. diff -r 4d2bf17e7631 -r cbc1f90ea367 lisp/disp-table.el --- a/lisp/disp-table.el Sat Dec 23 07:17:48 1995 +0000 +++ b/lisp/disp-table.el Sat Dec 23 07:32:51 1995 +0000 @@ -184,11 +184,13 @@ (if (or (<= (prefix-numeric-value arg) 0) (and (null arg) (char-table-p standard-display-table) - ;; Test 161, because sometimes people need to make - ;; 160 display as a space. + ;; Test 161, because 160 displays as a space. (equal (aref standard-display-table 161) [161]))) (standard-display-default 160 255) - (standard-display-8bit 160 255))) + (standard-display-8bit 160 255) + ;; Make non-line-break space display as a plain space. + ;; Most X fonts do the wrong thing for code 160. + (aset standard-display-table 160 [32]))) (provide 'disp-table)