From a9263d2192e255fd1eaed203cc9a655ea4791d6d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 24 Dec 2004 05:21:05 +0000 Subject: [PATCH] (YYINITDEPTH): New macro, so that the initial stack is small too. --- lib/getdate.y | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/getdate.y b/lib/getdate.y index 60ff665a53..f6c860de4a 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -48,6 +48,7 @@ high, since that might cause problems on machines whose alloca implementations have lame stack-overflow checking. */ #define YYMAXDEPTH 20 +#define YYINITDEPTH YYMAXDEPTH /* Since the code of getdate.y is not included in the Emacs executable itself, there is no need to #define static in this file. Even if -- 2.30.2