aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2002-06-20 01:02:57 +0000
committerMiles Bader2002-06-20 01:02:57 +0000
commitcf6af551a38728f755798441db19be2d7adb2860 (patch)
tree7c89c829b583c8bbb77877a9605e6deb89584538
parente7272eceaa64c62ab8b51fcde116b9be9c71bf83 (diff)
downloademacs-cf6af551a38728f755798441db19be2d7adb2860.tar.gz
emacs-cf6af551a38728f755798441db19be2d7adb2860.zip
Re-enable code giving word syntax to certain japanese-jisx0208 characters.
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/international/characters.el10
2 files changed, 15 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2494ce2f57d..c3ede33d669 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12002-06-20 Miles Bader <miles@gnu.org>
2
3 * international/characters.el: Re-enable code giving word syntax
4 to certain japanese-jisx0208 characters.
5
62002-06-18 Miles Bader <miles@gnu.org>
7
8 * comint.el (comint-output-filter): Run output-filter functions
9 before setting up the prompt.
10
12002-06-19 Glenn Morris <gmorris@ast.cam.ac.uk> 112002-06-19 Glenn Morris <gmorris@ast.cam.ac.uk>
2 12
3 * progmodes/f90.el (f90-type-def-re): Fix value. 13 * progmodes/f90.el (f90-type-def-re): Fix value.
diff --git a/lisp/international/characters.el b/lisp/international/characters.el
index f9260f965ab..c6baa4e35da 100644
--- a/lisp/international/characters.el
+++ b/lisp/international/characters.el
@@ -2,7 +2,7 @@
2 2
3;; Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. 3;; Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN.
4;; Licensed to the Free Software Foundation. 4;; Licensed to the Free Software Foundation.
5;; Copyright (C) 2001 Free Software Foundation, Inc. 5;; Copyright (C) 2001, 2002 Free Software Foundation, Inc.
6 6
7;; Keywords: multibyte character, character set, syntax, category 7;; Keywords: multibyte character, character set, syntax, category
8 8
@@ -574,10 +574,10 @@
574(modify-syntax-entry (make-char 'japanese-jisx0208 33) "_") 574(modify-syntax-entry (make-char 'japanese-jisx0208 33) "_")
575(modify-syntax-entry (make-char 'japanese-jisx0208 34) "_") 575(modify-syntax-entry (make-char 'japanese-jisx0208 34) "_")
576(modify-syntax-entry (make-char 'japanese-jisx0208 40) "_") 576(modify-syntax-entry (make-char 'japanese-jisx0208 40) "_")
577;; (let ((chars '(?$B!<(B ?$B!+(B ?$B!,(B ?$B!3(B ?$B!4(B ?$B!5(B ?$B!6(B ?$B!7(B ?$B!8(B ?$B!9(B ?$B!:(B ?$B!;(B))) 577(let ((chars '(?$B!<(B ?$B!+(B ?$B!,(B ?$B!3(B ?$B!4(B ?$B!5(B ?$B!6(B ?$B!7(B ?$B!8(B ?$B!9(B ?$B!:(B ?$B!;(B)))
578;; (while chars 578 (while chars
579;; (modify-syntax-entry (car chars) "w") 579 (modify-syntax-entry (car chars) "w")
580;; (setq chars (cdr chars)))) 580 (setq chars (cdr chars))))
581(modify-syntax-entry ?\$B!J(B "($B!K(B") 581(modify-syntax-entry ?\$B!J(B "($B!K(B")
582(modify-syntax-entry ?\$B!N(B "($B!O(B") 582(modify-syntax-entry ?\$B!N(B "($B!O(B")
583(modify-syntax-entry ?\$B!P(B "($B!Q(B") 583(modify-syntax-entry ?\$B!P(B "($B!Q(B")