aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-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)