aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-03-25 17:56:41 +0000
committerRichard M. Stallman1993-03-25 17:56:41 +0000
commitc7e466e10bbdcd2cfbc4599b0b2ce6a389677a5c (patch)
treebb483066385964435eea59885cc9915b62f19cf2 /src
parent48dfbc2f8054a07efa099ccb58b60db365454bae (diff)
downloademacs-c7e466e10bbdcd2cfbc4599b0b2ce6a389677a5c.tar.gz
emacs-c7e466e10bbdcd2cfbc4599b0b2ce6a389677a5c.zip
(searchbuf): Declare here.
Diffstat (limited to 'src')
-rw-r--r--src/dired.c3
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 ();
68 68
69#include "regex.h" 69#include "regex.h"
70 70
71/* A search buffer, with a fastmap allocated and ready to go. */
72extern struct re_pattern_buffer searchbuf;
73
71#define min(a, b) ((a) < (b) ? (a) : (b)) 74#define min(a, b) ((a) < (b) ? (a) : (b))
72 75
73/* if system does not have symbolic links, it does not have lstat. 76/* if system does not have symbolic links, it does not have lstat.