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, 14 Jun 2005 08:00:51 -0400

Index: emacs/lisp/emacs-lisp/debug.el
diff -c emacs/lisp/emacs-lisp/debug.el:1.86 emacs/lisp/emacs-lisp/debug.el:1.87
*** emacs/lisp/emacs-lisp/debug.el:1.86 Mon Jun 13 23:40:05 2005
--- emacs/lisp/emacs-lisp/debug.el      Tue Jun 14 12:00:50 2005
***************
*** 656,665 ****
  ;;;###autoload
  (defun debug-on-entry (function)
    "Request FUNCTION to invoke debugger each time it is called.
  When called interactively, prompt for FUNCTION in the minibuffer.
! If you tell the debugger to continue, FUNCTION's execution proceeds.
! This works by modifying the definition of FUNCTION,
! which must be written in Lisp, not predefined.
  Use \\[cancel-debug-on-entry] to cancel the effect of this command.
  Redefining FUNCTION also cancels it."
    (interactive "aDebug on entry (to function): ")
--- 656,671 ----
  ;;;###autoload
  (defun debug-on-entry (function)
    "Request FUNCTION to invoke debugger each time it is called.
+ 
  When called interactively, prompt for FUNCTION in the minibuffer.
! 
! This works by modifying the definition of FUNCTION.  If you tell the
! debugger to continue, FUNCTION's execution proceeds.  If FUNCTION is a
! normal function or a macro written in Lisp, you can also step through
! its execution.  FUNCTION can also be a primitive that is not a special
! form, in which case stepping is not possible.  Break-on-entry for
! primitive functions only works when that function is called from Lisp.
! 
  Use \\[cancel-debug-on-entry] to cancel the effect of this command.
  Redefining FUNCTION also cancels it."
    (interactive "aDebug on entry (to function): ")




reply via email to

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