diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-12-13 19:37:32 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-12-13 19:37:32 +0000 |
commit | 5ed3235280ca2e393f96545d58054443d3212ea7 (patch) | |
tree | 8fa27e963fdf37eda7a4361e860066ede39b6c98 /lisp/xml.el | |
parent | 8e2eba09792f72b4edb7bda311c4aaf0866f5cc8 (diff) | |
download | emacs-5ed3235280ca2e393f96545d58054443d3212ea7.tar.gz |
(xml-name-re, xml-entity-value-re): Add defvars.
Diffstat (limited to 'lisp/xml.el')
-rw-r--r-- | lisp/xml.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/xml.el b/lisp/xml.el index aba84d33230..daf5689c18b 100644 --- a/lisp/xml.el +++ b/lisp/xml.el @@ -179,6 +179,8 @@ If PARSE-NS is non-nil, then QNAMES are expanded." xml))) +(defvar xml-name-re) +(defvar xml-entity-value-re) (let* ((start-chars (concat "[:alpha:]:_")) (name-chars (concat "-[:digit:]." start-chars)) ;;[3] S ::= (#x20 | #x9 | #xD | #xA)+ |