]> git.eshelyaron.com Git - emacs.git/commit
search.c (re--describe-compiled): New function (bug#66261)
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 29 Sep 2023 18:55:24 +0000 (14:55 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 29 Sep 2023 18:55:24 +0000 (14:55 -0400)
commitcc0d7d7a3867e4554f89262e4641c9845ee0d647
treea3c3ee2a6ce207bb969b21f50f802bf55954d1d1
parent01229fe0096e936ea8f4fad0d64967671c4b1892
search.c (re--describe-compiled): New function (bug#66261)

This provides a fairly primitive but handy way to see what
a regexp compiles to without having to enable REGEX_EMACS_DEBUG
and wade through tons of stderr output.

* doc/lispref/searching.texi (Regexp Problems): Mention
`re--describe-compiled`.

* src/regex-emacs.c (debug_putchar, print_fastmap)
(print_partial_compiled_pattern, print_compiled_pattern): Add `dest`
argument, and compile also when `ENABLE_CHECKING` is set.
(DEBUG_PRINT_COMPILED_PATTERN, print_double_string, regex_compile):
Adjust to additional argument.

* src/regex-emacs.h (print_compiled_pattern): Declare.

* src/search.c (Fre__describe_compiled): New function.
(syms_of_search): Defsubr it.
doc/lispref/searching.texi
etc/NEWS
src/regex-emacs.c
src/regex-emacs.h
src/search.c