aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/nxml
diff options
context:
space:
mode:
authorGlenn Morris2018-02-16 15:16:15 -0500
committerGlenn Morris2018-02-16 15:16:15 -0500
commit66a4e651f3cf38c320d1a9d5ae6f88dcc641792b (patch)
tree0fa5ba9ab57893ae3bca46bd09d8b52105f8a17a /lisp/nxml
parent35e5c57db311c3d6c1c3a8dd4edc3d756d1d5d24 (diff)
downloademacs-66a4e651f3cf38c320d1a9d5ae6f88dcc641792b.tar.gz
emacs-66a4e651f3cf38c320d1a9d5ae6f88dcc641792b.zip
; Fix doc typos related to indefinite articles
Diffstat (limited to 'lisp/nxml')
-rw-r--r--lisp/nxml/xsd-regexp.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/nxml/xsd-regexp.el b/lisp/nxml/xsd-regexp.el
index f83dad57510..54f56dded37 100644
--- a/lisp/nxml/xsd-regexp.el
+++ b/lisp/nxml/xsd-regexp.el
@@ -208,7 +208,7 @@ Signal an error if it is not."
208 (nreverse (xsdre-compile-regexp re nil)))) 208 (nreverse (xsdre-compile-regexp re nil))))
209 209
210(defun xsdre-compile-regexp (re accum) 210(defun xsdre-compile-regexp (re accum)
211 "Return a Emacs regular expression for the symbolic regexp RE. 211 "Return an Emacs regular expression for the symbolic regexp RE.
212Returns a list of strings whose head is the regexp for RE 212Returns a list of strings whose head is the regexp for RE
213and whose tail is ACCUM." 213and whose tail is ACCUM."
214 (cond ((not (consp re)) 214 (cond ((not (consp re))
@@ -271,7 +271,7 @@ and whose tail is ACCUM."
271 (t (xsdre-compile-char-class re accum)))) 271 (t (xsdre-compile-char-class re accum))))
272 272
273(defun xsdre-compile-char-class (cc accum) 273(defun xsdre-compile-char-class (cc accum)
274 "Return a Emacs regular expression for the symbolic character class CC. 274 "Return an Emacs regular expression for the symbolic character class CC.
275Returns a list of strings whose head is the regexp for CC 275Returns a list of strings whose head is the regexp for CC
276and whose tail is ACCUM." 276and whose tail is ACCUM."
277 (cons (if (integerp cc) 277 (cons (if (integerp cc)
@@ -450,7 +450,7 @@ LOWER ::= UNICODE
450UPPER ::= UNICODE 450UPPER ::= UNICODE
451SYMBOLIC-CHAR-CLASS ::= SYMBOL 451SYMBOLIC-CHAR-CLASS ::= SYMBOL
452 452
453where UNICODE is a integer specifying a Unicode code-point and 453where UNICODE is an integer specifying a Unicode code-point and
454SYMBOLIC-CHAR-CLASS is a symbol which has either a `xsdre-char-class' 454SYMBOLIC-CHAR-CLASS is a symbol which has either a `xsdre-char-class'
455property whose value is a CHAR-CLASS, or a `xsdre-ranges' property 455property whose value is a CHAR-CLASS, or a `xsdre-ranges' property
456whose value is a range-list." 456whose value is a range-list."