diff options
author | Francesco Potortì <pot@gnu.org> | 2002-09-30 08:12:11 +0000 |
---|---|---|
committer | Francesco Potortì <pot@gnu.org> | 2002-09-30 08:12:11 +0000 |
commit | b90e26e1235040bcb8cb95e563d386e0d533d9e0 (patch) | |
tree | 0acfeddf801be55f06d01ca4208bcf1ef5666cd8 /src/regex.h | |
parent | 5039407b5d89a0c8a7c707dafbad852156e7ed7d (diff) | |
download | emacs-b90e26e1235040bcb8cb95e563d386e0d533d9e0.tar.gz |
Comment and whitespace changes regarding # define __restrict_arr
Diffstat (limited to 'src/regex.h')
-rw-r--r-- | src/regex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regex.h b/src/regex.h index f3c1c875a75..1cfd4363ea7 100644 --- a/src/regex.h +++ b/src/regex.h @@ -535,11 +535,11 @@ extern int re_exec _RE_ARGS ((const char *)); # endif # endif #endif -/* For now unconditionally define __restrict_arr to expand to nothing. +/* For now conditionally define __restrict_arr to expand to nothing. Ideally we would have a test for the compiler which allows defining it to restrict. */ #ifndef __restrict_arr -#define __restrict_arr +# define __restrict_arr #endif /* POSIX compatibility. */ |