diff options
| author | Jim Blandy | 1992-11-16 00:54:53 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-16 00:54:53 +0000 |
| commit | 986ffb244621a88dedd3885bd891611b79c57995 (patch) | |
| tree | 05e30c3edf557d5e80f7a9d6af5f2a79b66ade9d /src/buffer.h | |
| parent | ad3bb3d26038b562fb539a4c9217cdc26c0b42f8 (diff) | |
| download | emacs-986ffb244621a88dedd3885bd891611b79c57995.tar.gz emacs-986ffb244621a88dedd3885bd891611b79c57995.zip | |
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Added VMS changes from Roland Roberts.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index ddf903e5469..6e3f7a8ee23 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -378,6 +378,12 @@ whatever you like. */ | |||
| 378 | #define R_ALLOC_DECLARE(var,data) | 378 | #define R_ALLOC_DECLARE(var,data) |
| 379 | #endif | 379 | #endif |
| 380 | 380 | ||
| 381 | /* VAX C is non-ANSI wrt extern declarations and requires the struct | ||
| 382 | re_pattern_buffer to completely defined for searchbuf's declaration. */ | ||
| 383 | #ifdef VMS | ||
| 384 | #include "regex.h" | ||
| 385 | #endif /* VMS */ | ||
| 386 | |||
| 381 | /* A search buffer, with a fastmap allocated and ready to go. */ | 387 | /* A search buffer, with a fastmap allocated and ready to go. */ |
| 382 | extern struct re_pattern_buffer searchbuf; | 388 | extern struct re_pattern_buffer searchbuf; |
| 383 | 389 | ||