diff options
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/dired.c | 5 | ||||
| -rw-r--r-- | src/lisp.h | 4 |
3 files changed, 8 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d4f8061ed02..ba863ba5710 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2011-03-15 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-03-15 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * dired.c (compile_pattern): Move decl from here ... | ||
| 4 | * lisp.h: ... to here, so that it can be checked. | ||
| 5 | (struct re_registers): New forward decl. | ||
| 6 | |||
| 3 | * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing. | 7 | * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing. |
| 4 | 8 | ||
| 5 | * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width. | 9 | * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width. |
diff --git a/src/dired.c b/src/dired.c index 4080e1711e0..3e2ce5e96a6 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -79,11 +79,6 @@ extern struct direct *readdir (DIR *); | |||
| 79 | #include "regex.h" | 79 | #include "regex.h" |
| 80 | #include "blockinput.h" | 80 | #include "blockinput.h" |
| 81 | 81 | ||
| 82 | /* Returns a search buffer, with a fastmap allocated and ready to go. */ | ||
| 83 | extern struct re_pattern_buffer *compile_pattern (Lisp_Object, | ||
| 84 | struct re_registers *, | ||
| 85 | Lisp_Object, int, int); | ||
| 86 | |||
| 87 | Lisp_Object Qdirectory_files; | 82 | Lisp_Object Qdirectory_files; |
| 88 | Lisp_Object Qdirectory_files_and_attributes; | 83 | Lisp_Object Qdirectory_files_and_attributes; |
| 89 | Lisp_Object Qfile_name_completion; | 84 | Lisp_Object Qfile_name_completion; |
diff --git a/src/lisp.h b/src/lisp.h index ddaf0438b00..ec45b83863b 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3025,6 +3025,10 @@ EXFUN (Fset_match_data, 2); | |||
| 3025 | EXFUN (Fmatch_beginning, 1); | 3025 | EXFUN (Fmatch_beginning, 1); |
| 3026 | EXFUN (Fmatch_end, 1); | 3026 | EXFUN (Fmatch_end, 1); |
| 3027 | extern void record_unwind_save_match_data (void); | 3027 | extern void record_unwind_save_match_data (void); |
| 3028 | struct re_registers; | ||
| 3029 | extern struct re_pattern_buffer *compile_pattern (Lisp_Object, | ||
| 3030 | struct re_registers *, | ||
| 3031 | Lisp_Object, int, int); | ||
| 3028 | extern int fast_string_match (Lisp_Object, Lisp_Object); | 3032 | extern int fast_string_match (Lisp_Object, Lisp_Object); |
| 3029 | extern int fast_c_string_match_ignore_case (Lisp_Object, const char *); | 3033 | extern int fast_c_string_match_ignore_case (Lisp_Object, const char *); |
| 3030 | extern int fast_string_match_ignore_case (Lisp_Object, Lisp_Object); | 3034 | extern int fast_string_match_ignore_case (Lisp_Object, Lisp_Object); |