diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/emacs-lisp/rx.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index cf02df239fe..87b3133b7f5 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el | |||
| @@ -136,7 +136,7 @@ Each entry is: | |||
| 136 | ;; Use `list' instead of a quoted list to wrap the strings here, | 136 | ;; Use `list' instead of a quoted list to wrap the strings here, |
| 137 | ;; since the return value may be mutated. | 137 | ;; since the return value may be mutated. |
| 138 | ((or 'nonl 'not-newline 'any) (cons (list ".") t)) | 138 | ((or 'nonl 'not-newline 'any) (cons (list ".") t)) |
| 139 | ((or 'anychar 'anything) (rx--translate-form '(or nonl "\n"))) | 139 | ((or 'anychar 'anything) (cons (list "[^z-a]") t)) |
| 140 | ('unmatchable (rx--empty)) | 140 | ('unmatchable (rx--empty)) |
| 141 | ((or 'bol 'line-start) (cons (list "^") 'lseq)) | 141 | ((or 'bol 'line-start) (cons (list "^") 'lseq)) |
| 142 | ((or 'eol 'line-end) (cons (list "$") 'rseq)) | 142 | ((or 'eol 'line-end) (cons (list "$") 'rseq)) |