(re_char): Don't expose it in the interface.

(re_set_whitespace_regexp): Adjust the arg's type to not use it.
This commit is contained in:
Stefan Monnier 2005-10-04 04:32:50 +00:00
parent 6470ea05f9
commit 4e2f601fbc
2 changed files with 7 additions and 4 deletions

View file

@ -1,5 +1,11 @@
2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
* regex.h (re_char): Don't expose it in the interface.
(re_set_whitespace_regexp): Adjust the arg's type to not use it.
* regex.c (re_char): Move it back here.
(re_set_whitespace_regexp): Change the arg's type to not use it.
* keyboard.c (make_lispy_event): If point has moved between down and up
event, make it a drag, not a click, to mirror what
mouse-drag-region expects.

View file

@ -608,10 +608,7 @@ extern re_wctype_t re_wctype (const unsigned char* str);
typedef int re_wchar_t;
/* Type of source-pattern and string chars. */
typedef const unsigned char re_char;
extern void re_set_whitespace_regexp (re_char *regexp);
extern void re_set_whitespace_regexp (const char *regexp);
#endif /* not WIDE_CHAR_SUPPORT */