diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2006-06-19 10:55:26 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-06-19 10:55:26 +0000 |
| commit | a940c3648790aaf115068d8b2a4e239b01cac6a6 (patch) | |
| tree | b5410463f7ea7a1764e978d19ffd7348303c9785 | |
| parent | 22492: url-quote-magic should detect syntactic word breaks correctly (diff) | |
| download | zsh-a940c3648790aaf115068d8b2a4e239b01cac6a6.tar zsh-a940c3648790aaf115068d8b2a4e239b01cac6a6.tar.gz zsh-a940c3648790aaf115068d8b2a4e239b01cac6a6.tar.bz2 zsh-a940c3648790aaf115068d8b2a4e239b01cac6a6.tar.lz zsh-a940c3648790aaf115068d8b2a4e239b01cac6a6.tar.xz zsh-a940c3648790aaf115068d8b2a4e239b01cac6a6.tar.zst zsh-a940c3648790aaf115068d8b2a4e239b01cac6a6.zip | |
22501: reduce maximum function depth to 1000
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.ac | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2006-06-19 Peter Stephenson <pws@csr.com> + + * 22501: configure.ac: reduce default maximum function depth + to 1000. + 2006-06-17 Barton E. Schaefer <schaefer@brasslantern.com> * 22492: Functions/Zle/url-quote-magic: properly detect when a new diff --git a/configure.ac b/configure.ac index 18bded9d8..3feae15ea 100644 --- a/configure.ac +++ b/configure.ac @@ -325,13 +325,13 @@ ifdef([max_function_depth],[undefine([max_function_depth])])dnl AH_TEMPLATE([MAX_FUNCTION_DEPTH], [Define for function depth limits]) AC_ARG_ENABLE(max-function-depth, -AC_HELP_STRING([--enable-max-function-depth=MAX], [limit function depth to MAX, default 4096]), +AC_HELP_STRING([--enable-max-function-depth=MAX], [limit function depth to MAX, default 1000]), [if test x$enableval = xyes; then - AC_DEFINE(MAX_FUNCTION_DEPTH, 4096) + AC_DEFINE(MAX_FUNCTION_DEPTH, 1000) elif test x$enableval != xno; then AC_DEFINE_UNQUOTED(MAX_FUNCTION_DEPTH, $enableval) fi], -[AC_DEFINE(MAX_FUNCTION_DEPTH, 4096)] +[AC_DEFINE(MAX_FUNCTION_DEPTH, 1000)] ) dnl Do you want to look for pcre support? |
