aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2002-12-04 11:40:32 +0000
committerRichard M. Stallman2002-12-04 11:40:32 +0000
commita8773ec1f46345c332db87cc9b885677d0c05362 (patch)
tree16894df9ebdc9994e30a8b0d5eaa9d7ee426d59f /src
parentb1b57aa840be57f5ea3730b6f77e7326c829257a (diff)
downloademacs-a8773ec1f46345c332db87cc9b885677d0c05362.tar.gz
emacs-a8773ec1f46345c332db87cc9b885677d0c05362.zip
Don't use #error.
Diffstat (limited to 'src')
-rw-r--r--src/alloca.c6
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 @@
51 in order to make unexec workable 51 in order to make unexec workable
52 */ 52 */
53# ifndef STACK_DIRECTION 53# ifndef STACK_DIRECTION
54# error "Must know STACK_DIRECTION at compile-time" 54you
55lose
56-- must know STACK_DIRECTION at compile-time
57/* Using #error here is not wise since this file is for
58 old and obscure compilers. */
55# endif /* STACK_DIRECTION undefined */ 59# endif /* STACK_DIRECTION undefined */
56# endif /* static */ 60# endif /* static */
57# endif /* emacs */ 61# endif /* emacs */