]> git.eshelyaron.com Git - emacs.git/commit
Get rid of re_set_whitespace_regexp
authorMichal Nazarewicz <mina86@mina86.com>
Wed, 27 Jul 2016 20:53:57 +0000 (22:53 +0200)
committerMichal Nazarewicz <mina86@mina86.com>
Tue, 2 Aug 2016 13:39:10 +0000 (15:39 +0200)
commitda9c55ddbbd08fc07ab36dc8bdc740e352eeab2c
tree597b4d4f7e7a0d784e26b5f114a035b4c068e1f0
parent04d96eca08ff797c0cd93c33fe8589f4623fc449
Get rid of re_set_whitespace_regexp

* src/regex.h (re_set_whitespace_regexp): Delete.
(re_compile_pattern): Add whitespace_regexp argument #ifdef emacs.

* src/regex.c (re_set_whitespace_regexp, whitespace_regexp): Delete.
(regex_compile): Add whitespace_regexp argument #ifdef emacs and wrap
whitespace_regexp-related code in an #ifdef emacs so it’s compiled out
unless building Emacs.
(re_compile_pattern): Pass whitespace_regexp argument to regex_compile

* src/search.c (compile_pattern_1): Don’t use re_set_whitespace_regexp,
pass the regex as argument to re_compile_pattern instead.
src/regex.c
src/regex.h
src/search.c