diff options
| author | Glenn Morris | 2018-02-16 15:16:15 -0500 |
|---|---|---|
| committer | Glenn Morris | 2018-02-16 15:16:15 -0500 |
| commit | 66a4e651f3cf38c320d1a9d5ae6f88dcc641792b (patch) | |
| tree | 0fa5ba9ab57893ae3bca46bd09d8b52105f8a17a /lisp/nxml | |
| parent | 35e5c57db311c3d6c1c3a8dd4edc3d756d1d5d24 (diff) | |
| download | emacs-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.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." | |||
| 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. |
| 212 | Returns a list of strings whose head is the regexp for RE | 212 | Returns a list of strings whose head is the regexp for RE |
| 213 | and whose tail is ACCUM." | 213 | and 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. |
| 275 | Returns a list of strings whose head is the regexp for CC | 275 | Returns a list of strings whose head is the regexp for CC |
| 276 | and whose tail is ACCUM." | 276 | and whose tail is ACCUM." |
| 277 | (cons (if (integerp cc) | 277 | (cons (if (integerp cc) |
| @@ -450,7 +450,7 @@ LOWER ::= UNICODE | |||
| 450 | UPPER ::= UNICODE | 450 | UPPER ::= UNICODE |
| 451 | SYMBOLIC-CHAR-CLASS ::= SYMBOL | 451 | SYMBOLIC-CHAR-CLASS ::= SYMBOL |
| 452 | 452 | ||
| 453 | where UNICODE is a integer specifying a Unicode code-point and | 453 | where UNICODE is an integer specifying a Unicode code-point and |
| 454 | SYMBOLIC-CHAR-CLASS is a symbol which has either a `xsdre-char-class' | 454 | SYMBOLIC-CHAR-CLASS is a symbol which has either a `xsdre-char-class' |
| 455 | property whose value is a CHAR-CLASS, or a `xsdre-ranges' property | 455 | property whose value is a CHAR-CLASS, or a `xsdre-ranges' property |
| 456 | whose value is a range-list." | 456 | whose value is a range-list." |