diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-12-04 11:40:32 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-12-04 11:40:32 +0000 |
commit | a8773ec1f46345c332db87cc9b885677d0c05362 (patch) | |
tree | 16894df9ebdc9994e30a8b0d5eaa9d7ee426d59f /src/alloca.c | |
parent | b1b57aa840be57f5ea3730b6f77e7326c829257a (diff) | |
download | emacs-a8773ec1f46345c332db87cc9b885677d0c05362.tar.gz |
Don't use #error.
Diffstat (limited to 'src/alloca.c')
-rw-r--r-- | src/alloca.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/alloca.c b/src/alloca.c index 3cea2744149..c03404b607e 100644 --- a/src/alloca.c +++ b/src/alloca.c @@ -51,7 +51,11 @@ in order to make unexec workable */ # ifndef STACK_DIRECTION -# error "Must know STACK_DIRECTION at compile-time" +you +lose +-- must know STACK_DIRECTION at compile-time +/* Using #error here is not wise since this file is for + old and obscure compilers. */ # endif /* STACK_DIRECTION undefined */ # endif /* static */ # endif /* emacs */ |