* xml-parse-region should be more flexible in recognising empty elements
@ 2002-12-04 19:32 mah
0 siblings, 0 replies; only message in thread
From: mah @ 2002-12-04 19:32 UTC (permalink / raw)
xml-parse-region fails to parse empty elements like the
following:
<el / >
To avoid this problem, the following code:
;; is this an empty element ?
(if (looking-at "/>")
should be changed to:
;; is this an empty element ?
(if (looking-at "/[ \t\n]*>")
Mark.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-12-04 19:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-04 19:32 xml-parse-region should be more flexible in recognising empty elements mah
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.