Files
emacs/lisp
Mattias Engdegård 60102016e4 Abolish max-specpdl-size (bug#57911)
The max-lisp-eval-depth limit is sufficient to prevent unbounded stack
growth including the specbind stack; simplify matters for the user by
not having them to worry about two different limits.  This change
turns max-specpdl-size into a harmless variable with no effects,
to keep existing code happy.

* lisp/subr.el (max-specpdl-size):
Define as an ordinary (but obsolete) dynamic variable.
* admin/grammars/Makefile.in:
* doc/lispintro/emacs-lisp-intro.texi (Loops & Recursion):
* doc/lispref/control.texi (Cleanups):
* doc/lispref/edebug.texi (Checking Whether to Stop):
* doc/lispref/eval.texi (Eval):
* doc/lispref/variables.texi (Local Variables):
* doc/misc/calc.texi (Recursion Depth):
Update documentation.
* etc/NEWS: Announce.
* src/eval.c
(FletX): Use safe iteration to guard against circular bindings list.
(syms_of_eval): Remove old max-specpdl-size definition.
(init_eval_once, restore_stack_limits, call_debugger)
(signal_or_quit, grow_specpdl_allocation):
* leim/Makefile.in:
* lisp/Makefile.in:
* lisp/calc/calc-stuff.el (calc-more-recursion-depth)
(calc-less-recursion-depth):
* lisp/calc/calc.el (calc-do):
* lisp/cedet/semantic/ede-grammar.el (ede-proj-makefile-insert-rules):
* lisp/cedet/semantic/grammar.el (semantic-grammar-batch-build-one-package):
* lisp/cus-start.el (standard):
* lisp/emacs-lisp/comp.el (comp--native-compile):
* lisp/emacs-lisp/edebug.el (edebug-max-depth):
(edebug-read-and-maybe-wrap-form, edebug-default-enter):
* lisp/emacs-lisp/regexp-opt.el (regexp-opt):
* lisp/eshell/esh-mode.el (eshell-mode):
* lisp/loadup.el (max-specpdl-size):
* lisp/mh-e/mh-e.el (mh-invisible-headers):
* lisp/net/shr.el (shr-insert-document, shr-descend):
* lisp/play/hanoi.el (hanoi-internal):
* lisp/progmodes/cperl-mode.el:
* src/fileio.c (Fdo_auto_save):
Remove references to and modifications of max-specpdl-size.
2022-09-19 19:30:03 +02:00
..
2022-09-19 19:30:03 +02:00
2022-09-09 11:27:30 +02:00
2022-09-19 19:30:03 +02:00
2022-09-19 19:30:03 +02:00
2022-08-09 22:44:21 +02:00
2022-09-05 06:30:32 +02:00
2022-09-19 19:30:03 +02:00
2022-09-09 11:27:30 +02:00
2022-08-10 11:21:24 +02:00
2022-07-19 14:13:25 +02:00
2022-08-08 14:23:29 +02:00
2022-09-09 11:27:30 +02:00
2022-09-13 18:19:26 +02:00
2022-08-05 11:47:05 +02:00
2022-09-13 11:06:40 +02:00
2022-09-13 11:06:40 +02:00
2022-08-01 01:17:16 -07:00
2022-09-09 11:27:30 +02:00
2022-09-06 12:24:32 +02:00
2022-08-30 19:09:00 +03:00
2022-09-06 12:54:42 +02:00
2022-09-19 06:31:49 +02:00
2022-07-22 22:43:38 +02:00
2022-09-06 12:24:32 +02:00
2022-09-16 13:23:34 +02:00
2022-09-19 19:30:03 +02:00
2022-07-26 14:23:30 +02:00
2022-08-22 19:22:33 +02:00
2022-09-09 11:27:30 +02:00
2022-09-18 19:09:54 +03:00
2022-09-19 16:02:28 +02:00
2022-08-13 06:30:27 +02:00
2022-09-06 06:30:27 +02:00
2022-09-19 19:30:03 +02:00
2022-08-01 01:17:16 -07:00
2022-09-09 11:27:30 +02:00
2022-09-13 18:25:21 +02:00
2022-08-04 11:39:23 +02:00
2022-07-20 22:38:01 +02:00
2022-08-08 14:23:29 +02:00

This directory contains source code for the parts of Emacs that are
written in Emacs Lisp.  *.el files are Emacs Lisp source, and the
corresponding *.elc files are byte-compiled versions.  Byte-compiled
files are architecture-independent.

The term subdirectory contains Lisp files that customize Emacs for
certain terminal types.  When Emacs starts, it checks the TERM
environment variable to get the terminal type and loads
'term/${TERM}.el' if it exists.

The other subdirectories hold Lisp packages grouped by their general
purpose.