Mercurial > emacs
changeset 48650:d2e0f6c41ac5
Don't use #error.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 04 Dec 2002 11:40:32 +0000 |
parents | 88902727534a |
children | 572f41d9a2ea |
files | src/alloca.c |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloca.c Wed Dec 04 11:32:37 2002 +0000 +++ b/src/alloca.c Wed Dec 04 11:40:32 2002 +0000 @@ -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 */