aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2005-10-04 04:32:50 +0000
committerStefan Monnier2005-10-04 04:32:50 +0000
commit4e2f601fbc30effe2a80c7c8eef94347c0b90be9 (patch)
tree97504448455ea915c01b3354850d7c6da0ba74d2
parent6470ea05f949a6363561e8ac934e7b7a66498825 (diff)
downloademacs-4e2f601fbc30effe2a80c7c8eef94347c0b90be9.tar.gz
emacs-4e2f601fbc30effe2a80c7c8eef94347c0b90be9.zip
(re_char): Don't expose it in the interface.
(re_set_whitespace_regexp): Adjust the arg's type to not use it.
-rw-r--r--src/ChangeLog6
-rw-r--r--src/regex.h5
2 files changed, 7 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d57a739d45a..85f6062407e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12005-10-04 Stefan Monnier <monnier@iro.umontreal.ca> 12005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * regex.h (re_char): Don't expose it in the interface.
4 (re_set_whitespace_regexp): Adjust the arg's type to not use it.
5
6 * regex.c (re_char): Move it back here.
7 (re_set_whitespace_regexp): Change the arg's type to not use it.
8
3 * keyboard.c (make_lispy_event): If point has moved between down and up 9 * keyboard.c (make_lispy_event): If point has moved between down and up
4 event, make it a drag, not a click, to mirror what 10 event, make it a drag, not a click, to mirror what
5 mouse-drag-region expects. 11 mouse-drag-region expects.
diff --git a/src/regex.h b/src/regex.h
index 45a9f6fff0d..da0ab3e78d1 100644
--- a/src/regex.h
+++ b/src/regex.h
@@ -608,10 +608,7 @@ extern re_wctype_t re_wctype (const unsigned char* str);
608 608
609typedef int re_wchar_t; 609typedef int re_wchar_t;
610 610
611/* Type of source-pattern and string chars. */ 611extern void re_set_whitespace_regexp (const char *regexp);
612typedef const unsigned char re_char;
613
614extern void re_set_whitespace_regexp (re_char *regexp);
615 612
616#endif /* not WIDE_CHAR_SUPPORT */ 613#endif /* not WIDE_CHAR_SUPPORT */
617 614