all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: mah@everybody.org (Mark A. Hershberger)
Subject: xml.el can't handle some doctypes
Date: Mon, 10 Mar 2003 16:55:25 -0600	[thread overview]
Message-ID: <87r89en86a.fsf@batman.everybody.org> (raw)


Parsing the following valid XML causes an "XML: Invalid
character":

<?xml version="1.0"?>

<!DOCTYPE rdf:RDF [
<!ENTITY % HTMLlat1 PUBLIC
 "-//W3C//ENTITIES Latin 1 for XHTML//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">
%HTMLlat1;
]>

<rdf:RDF/>

Following patch fixes the problem:

*** lisp/xml.el-orig   Mon Mar 10 16:53:06 2003
--- lisp/xml.el        Mon Mar 10 16:52:53 2003
***************
*** 323,328 ****
--- 323,329 ----
    (condition-case nil
        (progn
        (forward-word 1)  ;; name of the document
+       (goto-char (- (re-search-forward "[[:space:]]") 1))
        (goto-char (- (re-search-forward "[^[:space:]]") 1))
        (if (looking-at "\\[")
            (re-search-forward "\\][[:space:]]*>" end)

Diff finished at Mon Mar 10 16:53:15

                 reply	other threads:[~2003-03-10 22:55 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87r89en86a.fsf@batman.everybody.org \
    --to=mah@everybody.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.