]> git.eshelyaron.com Git - emacs.git/commitdiff
(re_char): Don't expose it in the interface.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 4 Oct 2005 04:32:50 +0000 (04:32 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 4 Oct 2005 04:32:50 +0000 (04:32 +0000)
(re_set_whitespace_regexp): Adjust the arg's type to not use it.

src/ChangeLog
src/regex.h

index d57a739d45a5c064bf2e98df38a0bbcf59ce5ba2..85f6062407e3b1249986a2800238feb19f9b3bcb 100644 (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.
index 45a9f6fff0d4335cedcfe552ed598fd132543ae7..da0ab3e78d11e49aa8759d44962391b36c6d8e1c 100644 (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 */