]> git.eshelyaron.com Git - emacs.git/commitdiff
Set category of kinsoku-bol and kinsoku-eol for
authorKenichi Handa <handa@m17n.org>
Mon, 12 May 1997 06:56:23 +0000 (06:56 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 12 May 1997 06:56:23 +0000 (06:56 +0000)
latin-jisx0201 and katakana-jisx0201 characters.

lisp/international/kinsoku.el

index 183771cf5f65ec36f64512ca9ac65eb6e3db2ffb..fec531f60479bbb4f8d8654e639d6a727ff6383e 100644 (file)
@@ -46,6 +46,22 @@ The value 0 means there's no limitation.")
        (concat
         ;; ASCII
         "!)-_~}]:;',.?"
+        ;; Latin JISX0201
+        ;; Instead of putting Latin JISX0201 string directyly, we
+        ;; generate the string as below to avoid character
+        ;; unification problem.
+        (let* ((str1 "!)-_~}]:;',.?")
+               (len (length str1))
+               (idx 0)
+               (str2 "")
+               ch)
+          (while (< idx len)
+            (setq ch (make-char 'latin-jisx0201 (aref str1 idx))
+                  str2 (concat str2 (char-to-string ch))
+                  idx (1+ idx)))
+          str2)
+        ;; Katakana JISX0201
+        "\e(I!#'()*+,-./0^_\e(B"
         ;; Japanese JISX0208
         "\e$B!"!#!$!%!&!'!(!)!*!+!,!-!.!/!0!1!2!3!4!5!6!7!8!9!:!;!<!=!>\e(B\
 \e$B!?!@!A!B!C!D!E!G!I!K!M!O!Q!S!U!W!Y![!k!l!m!n\e(B\
@@ -72,6 +88,20 @@ The value 0 means there's no limitation.")
        (concat
         ;; ASCII
         "({[`"
+        ;; Latin JISX0201
+        ;; See the comment above.
+        (let* ((str1 "({[`")
+               (len (length str1))
+               (idx 0)
+               (str2 "")
+               ch)
+          (while (< idx len)
+            (setq ch (make-char 'latin-jisx0201 (aref str1 idx))
+                  str2 (concat str2 (char-to-string ch))
+                  idx (1+ idx)))
+          str2)
+        ;; JISX0201 Katakana
+        "\e(I"\e(B"
         ;; Japanese JISX0208
         "\e$B!F!H!J!L!N!P!R!T!V!X!Z!k!l!m!n!w!x\e(B\
 \e$A!.!0#"#(!2!4!6!8!:!<!>!c!d!e#@!f!l\e(B"
@@ -101,7 +131,7 @@ The value 0 means there's no limitation.")
        (goto-char (car pos-and-column)))))
 
 ;; Try to resolve `kinsoku' restriction by making the current line shorter.
-;; The line can't be broken before the buffer position LINEBEG."
+;; The line can't be broken before the buffer position LINEBEG.
 (defun kinsoku-shorter (linebeg)
   (let ((pos (save-excursion
               (forward-char -1)