diff options
| author | Karl Berry | 1992-11-04 20:39:56 +0000 |
|---|---|---|
| committer | Karl Berry | 1992-11-04 20:39:56 +0000 |
| commit | 26a7e2e7a53216d5668d1735419da69912ec53e3 (patch) | |
| tree | 88b96bfb44d1c7184fac3e786be2efe0d83eddc1 /src | |
| parent | f7644ea33d275f2a3ae6c9a5f558ee93070815df (diff) | |
| download | emacs-26a7e2e7a53216d5668d1735419da69912ec53e3.tar.gz emacs-26a7e2e7a53216d5668d1735419da69912ec53e3.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/regex.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/regex.h b/src/regex.h index 6ae4f198983..87824ef474f 100644 --- a/src/regex.h +++ b/src/regex.h | |||
| @@ -378,14 +378,17 @@ typedef struct | |||
| 378 | unfortunately clutters up the declarations a bit, but I think it's | 378 | unfortunately clutters up the declarations a bit, but I think it's |
| 379 | worth it. | 379 | worth it. |
| 380 | 380 | ||
| 381 | We also have to undo `const' if we are not ANSI. */ | 381 | We also have to undo `const' if we are not ANSI and if it hasn't |
| 382 | previously being taken care of. */ | ||
| 382 | 383 | ||
| 383 | #if __STDC__ | 384 | #if __STDC__ |
| 384 | #define _RE_ARGS(args) args | 385 | #define _RE_ARGS(args) args |
| 385 | #else | 386 | #else |
| 386 | #define _RE_ARGS(args) () | 387 | #define _RE_ARGS(args) () |
| 388 | #ifndef const | ||
| 387 | #define const | 389 | #define const |
| 388 | #endif | 390 | #endif |
| 391 | #endif | ||
| 389 | 392 | ||
| 390 | /* Sets the current default syntax to SYNTAX, and return the old syntax. | 393 | /* Sets the current default syntax to SYNTAX, and return the old syntax. |
| 391 | You can also simply assign to the `re_syntax_options' variable. */ | 394 | You can also simply assign to the `re_syntax_options' variable. */ |