diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-03-25 17:56:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-03-25 17:56:41 +0000 |
| commit | c7e466e10bbdcd2cfbc4599b0b2ce6a389677a5c (patch) | |
| tree | bb483066385964435eea59885cc9915b62f19cf2 | |
| parent | 48dfbc2f8054a07efa099ccb58b60db365454bae (diff) | |
| download | emacs-c7e466e10bbdcd2cfbc4599b0b2ce6a389677a5c.tar.gz | |
(searchbuf): Declare here.
| -rw-r--r-- | src/dired.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dired.c b/src/dired.c index 9f38f79a711..0b9fa436486 100644 --- a/src/dired.c +++ b/src/dired.c @@ -68,6 +68,9 @@ extern struct direct *readdir (); #include "regex.h" +/* A search buffer, with a fastmap allocated and ready to go. */ +extern struct re_pattern_buffer searchbuf; + #define min(a, b) ((a) < (b) ? (a) : (b)) /* if system does not have symbolic links, it does not have lstat. |
