diff options
| author | Karl Heuer | 1995-07-17 23:24:57 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-07-17 23:24:57 +0000 |
| commit | 33487cc80b0d0280c5dcffec27d897f370cc037f (patch) | |
| tree | 2be80b98bd388a851d9f9a81fa126bb9706a6e46 /src | |
| parent | 88415bfc716efcce1f233ce2029caf5abde90e57 (diff) | |
| download | emacs-33487cc80b0d0280c5dcffec27d897f370cc037f.tar.gz emacs-33487cc80b0d0280c5dcffec27d897f370cc037f.zip | |
Fix conditional.
Diffstat (limited to 'src')
| -rw-r--r-- | src/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c index 1af5ab0edca..9bb15d7366e 100644 --- a/src/regex.c +++ b/src/regex.c | |||
| @@ -260,7 +260,7 @@ char *alloca (); | |||
| 260 | 260 | ||
| 261 | /* Define how to allocate the failure stack. */ | 261 | /* Define how to allocate the failure stack. */ |
| 262 | 262 | ||
| 263 | #if defined (REL_ALLOC) && !defined (REGEX_MALLOC) | 263 | #if defined (REL_ALLOC) && defined (REGEX_MALLOC) |
| 264 | 264 | ||
| 265 | #define REGEX_ALLOCATE_STACK(size) \ | 265 | #define REGEX_ALLOCATE_STACK(size) \ |
| 266 | r_alloc (&failure_stack_ptr, (size)) | 266 | r_alloc (&failure_stack_ptr, (size)) |