emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/debug.el


From: Lute Kamstra
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/debug.el
Date: Tue, 08 Mar 2005 15:15:15 -0500

Index: emacs/lisp/emacs-lisp/debug.el
diff -c emacs/lisp/emacs-lisp/debug.el:1.73 emacs/lisp/emacs-lisp/debug.el:1.74
*** emacs/lisp/emacs-lisp/debug.el:1.73 Mon Mar  7 14:12:26 2005
--- emacs/lisp/emacs-lisp/debug.el      Tue Mar  8 20:15:15 2005
***************
*** 94,100 ****
  
  (defvar debugger-jumping-flag nil
    "Non-nil means that debug-on-entry is disabled.
! This variable is used by `debugger-jump' and `debugger-reenable'.")
  
  ;; When you change this, you may also need to change the number of
  ;; frames that the debugger skips.
--- 94,101 ----
  
  (defvar debugger-jumping-flag nil
    "Non-nil means that debug-on-entry is disabled.
! This variable is used by `debugger-jump', `debugger-step-through',
! and `debugger-reenable' to temporarily disable debug-on-entry.")
  
  ;; When you change this, you may also need to change the number of
  ;; frames that the debugger skips.
***************
*** 384,389 ****
--- 385,392 ----
  Enter another debugger on next entry to eval, apply or funcall."
    (interactive)
    (setq debugger-step-after-exit t)
+   (setq debugger-jumping-flag t)
+   (add-hook 'post-command-hook 'debugger-reenable)
    (message "Proceeding, will debug on next eval or call.")
    (exit-recursive-edit))
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]