aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-10-20 23:16:04 +0200
committerLars Ingebrigtsen2019-10-20 23:46:50 +0200
commit78cb3791fa11c95756ee3917c63cfea774f128a2 (patch)
tree033aa6db106544a772e158046bd95adf34594180 /etc
parentb6bf5327908d310fabf7012af6790c7abc2114f4 (diff)
downloademacs-78cb3791fa11c95756ee3917c63cfea774f128a2.tar.gz
emacs-78cb3791fa11c95756ee3917c63cfea774f128a2.zip
Add a command to toggle an edebug breakpoint
* doc/lispref/edebug.texi (Breakpoints): Document this. * lisp/emacs-lisp/edebug.el (edebug-disabled-breakpoint): New face (bug#23472). (edebug-enabled-breakpoint): Rename. (edebug--overlay-breakpoints): Use the new face. (edebug-toggle-disable-breakpoint): New command and keystroke.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS14
1 files changed, 11 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 46ed40dfcba..d9a9fd82a61 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1462,9 +1462,17 @@ the Elisp manual for documentation of the new mode and its commands.
1462 1462
1463** Edebug 1463** Edebug
1464 1464
1465*** New face 'edebug-breakpoint' 1465+++
1466When setting breakpoints in Edebug, an overlay with this face is 1466*** New faces 'edebug-enabled-breakpoint' and 'edebug-disabled-breakpoint'
1467placed over the point in question. 1467When setting breakpoints in Edebug, an overlay with these faces are
1468placed over the point in question, depending on whether they are
1469enabled or not.
1470
1471+++
1472*** New command 'edebug-toggle-disable-breakpoint'
1473This command allows you to disable a breakpoint temporarily. This is
1474mainly useful with breakpoints that are conditional and would take
1475some time to recreate.
1468 1476
1469+++ 1477+++
1470*** New command 'edebug-unset-breakpoints' 1478*** New command 'edebug-unset-breakpoints'