# HG changeset patch # User Karl Heuer # Date 879218658 0 # Node ID 7cb27e61a1d5f310a179576837f47658ef35a3b9 # Parent 4aa45a7a62e8e153cbf4839e27e0542107555bef New category ` '. Enable for non-breaking space in Latin-N. diff -r 4aa45a7a62e8 -r 7cb27e61a1d5 lisp/international/characters.el --- a/lisp/international/characters.el Tue Nov 11 02:56:56 1997 +0000 +++ b/lisp/international/characters.el Tue Nov 11 03:24:18 1997 +0000 @@ -79,6 +79,9 @@ ;; For filling. (define-category ?| "While filling, we can break a line at this character.") +;; For indentation calculation. +(define-category ?\ "This character counts as a space for indentation purposes.") + ;; Keep the followings for `kinsoku' processing. See comments in ;; kinsoku.el. (define-category ?> "A character which can't be placed at beginning of line.") @@ -279,6 +282,12 @@ (modify-category-entry (make-char 'latin-iso8859-4) ?l) (modify-category-entry (make-char 'latin-iso8859-9) ?l) +(modify-category-entry (make-char 'latin-iso8859-1 160) ?\ ) +(modify-category-entry (make-char 'latin-iso8859-2 160) ?\ ) +(modify-category-entry (make-char 'latin-iso8859-3 160) ?\ ) +(modify-category-entry (make-char 'latin-iso8859-4 160) ?\ ) +(modify-category-entry (make-char 'latin-iso8859-9 160) ?\ ) + ;; Greek character set (ISO-8859-7) (modify-category-entry (make-char 'greek-iso8859-7) ?g)