diff options
author | Noam Postavsky <npostavs@gmail.com> | 2015-12-13 14:47:58 -0500 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2016-12-02 20:25:15 -0500 |
commit | 56c817837bff3ffef587a9c80d619b9fe4886159 (patch) | |
tree | f5d3a464be2d1472af9f0b754f8d22e915fc4cec /doc/lispref/elisp.texi | |
parent | e7cd98b86fc7cb7d8b187087ffff95f106124dc5 (diff) | |
download | emacs-56c817837bff3ffef587a9c80d619b9fe4886159.tar.gz |
Document watchpoints
* doc/lispref/debugging.texi (Variable Debugging):
* doc/lispref/variables.texi (Watching Variables): New section.
* etc/NEWS: Add entry for watchpoints
Diffstat (limited to 'doc/lispref/elisp.texi')
-rw-r--r-- | doc/lispref/elisp.texi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi index 708bd9c3094..6983ab77c63 100644 --- a/doc/lispref/elisp.texi +++ b/doc/lispref/elisp.texi @@ -498,6 +498,7 @@ Variables * Accessing Variables:: Examining values of variables whose names are known only at run time. * Setting Variables:: Storing new values in variables. +* Watching Variables:: Running a function when a variable is changed. * Variable Scoping:: How Lisp chooses among local and global values. * Buffer-Local Variables:: Variable values in effect only in one buffer. * File Local Variables:: Handling local variable lists in files. @@ -642,6 +643,7 @@ The Lisp Debugger * Error Debugging:: Entering the debugger when an error happens. * Infinite Loops:: Stopping and debugging a program that doesn't exit. * Function Debugging:: Entering it when a certain function is called. +* Variable Debugging:: Entering it when a variable is modified. * Explicit Debug:: Entering it at a certain point in the program. * Using Debugger:: What the debugger does; what you see while in it. * Debugger Commands:: Commands used while in the debugger. |