diff options
author | Glenn Morris <rgm@gnu.org> | 2018-02-16 15:16:15 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-02-16 15:16:15 -0500 |
commit | 66a4e651f3cf38c320d1a9d5ae6f88dcc641792b (patch) | |
tree | 0fa5ba9ab57893ae3bca46bd09d8b52105f8a17a /lisp/nxml | |
parent | 35e5c57db311c3d6c1c3a8dd4edc3d756d1d5d24 (diff) | |
download | emacs-66a4e651f3cf38c320d1a9d5ae6f88dcc641792b.tar.gz |
; Fix doc typos related to indefinite articles
Diffstat (limited to 'lisp/nxml')
-rw-r--r-- | lisp/nxml/xsd-regexp.el | 6 |
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." (nreverse (xsdre-compile-regexp re nil)))) (defun xsdre-compile-regexp (re accum) - "Return a Emacs regular expression for the symbolic regexp RE. + "Return an Emacs regular expression for the symbolic regexp RE. Returns a list of strings whose head is the regexp for RE and whose tail is ACCUM." (cond ((not (consp re)) @@ -271,7 +271,7 @@ and whose tail is ACCUM." (t (xsdre-compile-char-class re accum)))) (defun xsdre-compile-char-class (cc accum) - "Return a Emacs regular expression for the symbolic character class CC. + "Return an Emacs regular expression for the symbolic character class CC. Returns a list of strings whose head is the regexp for CC and whose tail is ACCUM." (cons (if (integerp cc) @@ -450,7 +450,7 @@ LOWER ::= UNICODE UPPER ::= UNICODE SYMBOLIC-CHAR-CLASS ::= SYMBOL -where UNICODE is a integer specifying a Unicode code-point and +where UNICODE is an integer specifying a Unicode code-point and SYMBOLIC-CHAR-CLASS is a symbol which has either a `xsdre-char-class' property whose value is a CHAR-CLASS, or a `xsdre-ranges' property whose value is a range-list." |