Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f61fd6b7
Commit
f61fd6b7
authored
Jun 30, 2007
by
Stefan Monnier
Browse files
(rx-constituents): Fix up `anything'.
parent
bd1bb1c7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/emacs-lisp/rx.el
lisp/emacs-lisp/rx.el
+1
-1
No files found.
lisp/ChangeLog
View file @
f61fd6b7
2007-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/rx.el (rx-constituents): Fix up `anything'.
2007-06-29 Juanma Barranquero <lekktu@gmail.com>
* generic-x.el (generic-define-mswindows-modes)
...
...
lisp/emacs-lisp/rx.el
View file @
f61fd6b7
...
...
@@ -120,7 +120,7 @@
(
| . or) ; SRE
(not-newline . ".")
(nonl . not-newline) ; SRE
(anything . ".\\|\n
")
(anything . "
\\(?:
.\\|\n
\\
)
")
(any . (rx-any 1 nil rx-check-any)) ; inconsistent with SRE
(in . any)
(char . any) ; sregex
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment