diff options
Diffstat (limited to 'devdocs/elisp/debugger.html')
| -rw-r--r-- | devdocs/elisp/debugger.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/devdocs/elisp/debugger.html b/devdocs/elisp/debugger.html new file mode 100644 index 00000000..25441b9a --- /dev/null +++ b/devdocs/elisp/debugger.html @@ -0,0 +1,56 @@ + <h3 class="section">The Lisp Debugger</h3> <p>The ordinary <em>Lisp debugger</em> provides the ability to suspend evaluation of a form. While evaluation is suspended (a state that is commonly known as a <em>break</em>), you may examine the run time stack, examine the values of local or global variables, or change those values. Since a break is a recursive edit, all the usual editing facilities of Emacs are available; you can even run programs that will enter the debugger recursively. See <a href="recursive-editing">Recursive Editing</a>. </p> <table class="menu" border="0" cellspacing="0"> <tr> +<td align="left" valign="top">• <a href="error-debugging" accesskey="1">Error Debugging</a> +</td> +<td> </td> +<td align="left" valign="top">Entering the debugger when an error happens. </td> +</tr> <tr> +<td align="left" valign="top">• <a href="infinite-loops" accesskey="2">Infinite Loops</a> +</td> +<td> </td> +<td align="left" valign="top">Stopping and debugging a program that doesn’t exit. </td> +</tr> <tr> +<td align="left" valign="top">• <a href="function-debugging" accesskey="3">Function Debugging</a> +</td> +<td> </td> +<td align="left" valign="top">Entering it when a certain function is called. </td> +</tr> <tr> +<td align="left" valign="top">• <a href="variable-debugging" accesskey="4">Variable Debugging</a> +</td> +<td> </td> +<td align="left" valign="top">Entering it when a variable is modified. </td> +</tr> <tr> +<td align="left" valign="top">• <a href="explicit-debug" accesskey="5">Explicit Debug</a> +</td> +<td> </td> +<td align="left" valign="top">Entering it at a certain point in the program. </td> +</tr> <tr> +<td align="left" valign="top">• <a href="using-debugger" accesskey="6">Using Debugger</a> +</td> +<td> </td> +<td align="left" valign="top">What the debugger does. </td> +</tr> <tr> +<td align="left" valign="top">• <a href="backtraces" accesskey="7">Backtraces</a> +</td> +<td> </td> +<td align="left" valign="top">What you see while in the debugger. </td> +</tr> <tr> +<td align="left" valign="top">• <a href="debugger-commands" accesskey="8">Debugger Commands</a> +</td> +<td> </td> +<td align="left" valign="top">Commands used while in the debugger. </td> +</tr> <tr> +<td align="left" valign="top">• <a href="invoking-the-debugger" accesskey="9">Invoking the Debugger</a> +</td> +<td> </td> +<td align="left" valign="top">How to call the function <code>debug</code>. </td> +</tr> <tr> +<td align="left" valign="top">• <a href="internals-of-debugger">Internals of Debugger</a> +</td> +<td> </td> +<td align="left" valign="top">Subroutines of the debugger, and global variables. </td> +</tr> </table><div class="_attribution"> + <p class="_attribution-p"> + Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc. <br>Licensed under the GNU GPL license.<br> + <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Debugger.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Debugger.html</a> + </p> +</div> |
