emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Mark A . Hershberger
Subject: [Emacs-diffs] Changes to emacs/lisp/xml.el
Date: Wed, 02 Nov 2005 22:56:40 -0500

Index: emacs/lisp/xml.el
diff -c emacs/lisp/xml.el:1.49 emacs/lisp/xml.el:1.50
*** emacs/lisp/xml.el:1.49      Tue Aug  9 02:52:15 2005
--- emacs/lisp/xml.el   Thu Nov  3 03:56:38 2005
***************
*** 279,288 ****
      (modify-syntax-entry ?. "_" table)
      (modify-syntax-entry ?: "_" table)
      ;; XML [89]
!     (dolist (c '(#x00B7 #x02D0 #x02D1 #x0387 #x0640 #x0E46 #x0EC6 #x3005
!                #x3031 #x3032 #x3033 #x3034 #x3035 #x309D #x309E #x30FC
!                #x30FD #x30FE))
!       (modify-syntax-entry (decode-char 'ucs c) "w" table))
      ;; Fixme: rest of [4]
      table)
    "Syntax table used by `xml-parse-region'.")
--- 279,289 ----
      (modify-syntax-entry ?. "_" table)
      (modify-syntax-entry ?: "_" table)
      ;; XML [89]
!     (unless (featurep 'xemacs)
!       (dolist (c '(#x00B7 #x02D0 #x02D1 #x0387 #x0640 #x0E46 #x0EC6 #x3005
!                         #x3031 #x3032 #x3033 #x3034 #x3035 #x309D #x309E 
#x30FC
!                         #x30FD #x30FE))
!       (modify-syntax-entry (decode-char 'ucs c) "w" table)))
      ;; Fixme: rest of [4]
      table)
    "Syntax table used by `xml-parse-region'.")
***************
*** 473,479 ****
                              (if (stringp expansion)
                                  (if (stringp (car children))
                                      ;; The two strings were separated by a 
comment.
!                                     (setq children (append (concat (car 
children) expansion)
                                                             (cdr children)))
                                    (setq children (append (list expansion) 
children)))
                                (setq children (append expansion 
children))))))))
--- 474,480 ----
                              (if (stringp expansion)
                                  (if (stringp (car children))
                                      ;; The two strings were separated by a 
comment.
!                                     (setq children (append (list (concat (car 
children) expansion))
                                                             (cdr children)))
                                    (setq children (append (list expansion) 
children)))
                                (setq children (append expansion 
children))))))))




reply via email to

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