emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/international/characters.el


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/international/characters.el
Date: Fri, 07 Dec 2001 12:52:20 -0500

Index: emacs/lisp/international/characters.el
diff -c emacs/lisp/international/characters.el:1.32 
emacs/lisp/international/characters.el:1.33
*** emacs/lisp/international/characters.el:1.32 Fri Dec  7 09:47:37 2001
--- emacs/lisp/international/characters.el      Fri Dec  7 12:52:20 2001
***************
*** 468,474 ****
  
  ;; Hebrew character set (ISO-8859-8)
  
! ;; (modify-category-entry (make-char 'hebrew-iso8859-8) ?w)
  
  ;; (let ((c 224))
  ;;   (while (< c 251)
--- 468,486 ----
  
  ;; Hebrew character set (ISO-8859-8)
  
! (modify-category-entry (make-char 'hebrew-iso8859-8) ?w)
! (let ((c #x591))
!   (while (<= c #x5f4)
!     (modify-category-entry (decode-char 'ucs c) ?w)
!     (setq c (1+ c))))
! 
! (modify-syntax-entry (make-char 'hebrew-iso8859-8 208) ".") ; PASEQ
! (modify-syntax-entry (make-char 'hebrew-iso8859-8 211) ".") ; SOF PASUQ
! (modify-syntax-entry (decode-char 'ucs #x5be) ".") ; MAQAF
! (modify-syntax-entry (decode-char 'ucs #x5c0) ".") ; PASEQ
! (modify-syntax-entry (decode-char 'ucs #x5c3) ".") ; SOF PASUQ
! (modify-syntax-entry (decode-char 'ucs #x5f3) ".") ; GERESH
! (modify-syntax-entry (decode-char 'ucs #x5f4) ".") ; GERSHAYIM
  
  ;; (let ((c 224))
  ;;   (while (< c 251)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]