emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Mike Williams
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/xml-lite.el
Date: Mon, 01 Apr 2002 07:44:35 -0500

Index: emacs/lisp/textmodes/xml-lite.el
diff -c emacs/lisp/textmodes/xml-lite.el:1.11 
emacs/lisp/textmodes/xml-lite.el:1.12
*** emacs/lisp/textmodes/xml-lite.el:1.11       Mon Apr  1 07:14:55 2002
--- emacs/lisp/textmodes/xml-lite.el    Mon Apr  1 07:44:34 2002
***************
*** 110,116 ****
          (t                              ; open or empty tag
           (setq tag-type 'open
                 name (xml-lite-parse-tag-name))
!          (if (eq ?/ (char-before (- tag-end 1)))
               (setq tag-type 'empty))))))
      (goto-char tag-start)
      (xml-lite-make-tag tag-type tag-start tag-end name)))
--- 110,117 ----
          (t                              ; open or empty tag
           (setq tag-type 'open
                 name (xml-lite-parse-tag-name))
!          (if (or (eq ?/ (char-before (- tag-end 1)))
!                  (sgml-empty-tag-p name))
               (setq tag-type 'empty))))))
      (goto-char tag-start)
      (xml-lite-make-tag tag-type tag-start tag-end name)))



reply via email to

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