aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1997-11-11 03:24:18 +0000
committerKarl Heuer1997-11-11 03:24:18 +0000
commit504af7b2808ff9a2b50078c3dd23dc6a749960fe (patch)
tree6ae1268e618cc5b85fd2060cfde8d396b22872b5
parentd73769eb97353c6cd07181fea06bbc04e632f246 (diff)
downloademacs-504af7b2808ff9a2b50078c3dd23dc6a749960fe.tar.gz
emacs-504af7b2808ff9a2b50078c3dd23dc6a749960fe.zip
New category ` '.
Enable for non-breaking space in Latin-N.
-rw-r--r--lisp/international/characters.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/international/characters.el b/lisp/international/characters.el
index 2527542e382..ab6bfec5f58 100644
--- a/lisp/international/characters.el
+++ b/lisp/international/characters.el
@@ -79,6 +79,9 @@
79;; For filling. 79;; For filling.
80(define-category ?| "While filling, we can break a line at this character.") 80(define-category ?| "While filling, we can break a line at this character.")
81 81
82;; For indentation calculation.
83(define-category ?\ "This character counts as a space for indentation purposes.")
84
82;; Keep the followings for `kinsoku' processing. See comments in 85;; Keep the followings for `kinsoku' processing. See comments in
83;; kinsoku.el. 86;; kinsoku.el.
84(define-category ?> "A character which can't be placed at beginning of line.") 87(define-category ?> "A character which can't be placed at beginning of line.")
@@ -279,6 +282,12 @@
279(modify-category-entry (make-char 'latin-iso8859-4) ?l) 282(modify-category-entry (make-char 'latin-iso8859-4) ?l)
280(modify-category-entry (make-char 'latin-iso8859-9) ?l) 283(modify-category-entry (make-char 'latin-iso8859-9) ?l)
281 284
285(modify-category-entry (make-char 'latin-iso8859-1 160) ?\ )
286(modify-category-entry (make-char 'latin-iso8859-2 160) ?\ )
287(modify-category-entry (make-char 'latin-iso8859-3 160) ?\ )
288(modify-category-entry (make-char 'latin-iso8859-4 160) ?\ )
289(modify-category-entry (make-char 'latin-iso8859-9 160) ?\ )
290
282;; Greek character set (ISO-8859-7) 291;; Greek character set (ISO-8859-7)
283 292
284(modify-category-entry (make-char 'greek-iso8859-7) ?g) 293(modify-category-entry (make-char 'greek-iso8859-7) ?g)