CMUCL commit: src/code (debug.lisp)

Raymond Toy rtoy at common-lisp.net
Fri Feb 19 15:59:36 CET 2010


    Date: Friday, February 19, 2010 @ 09:59:36
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/code

Modified: debug.lisp

Update help string for debug commands:
o L command includes an optional prefix.
o PP is not the same as P; it prints out more info.
o DESCRIBE was missing.


------------+
 debug.lisp |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)


Index: src/code/debug.lisp
diff -u src/code/debug.lisp:1.68 src/code/debug.lisp:1.69
--- src/code/debug.lisp:1.68	Fri Jan 22 08:36:06 2010
+++ src/code/debug.lisp	Fri Feb 19 09:59:36 2010
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /project/cmucl/cvsroot/src/code/debug.lisp,v 1.68 2010-01-22 13:36:06 rtoy Exp $")
+  "$Header: /project/cmucl/cvsroot/src/code/debug.lisp,v 1.69 2010-02-19 14:59:36 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -107,10 +107,12 @@
 
 Inspecting frames:
   BACKTRACE [n]  shows n frames going down the stack.
-  L              lists locals in current function.
-  P, PP          displays current function call.
+  L [prefix]     lists locals starting with the given prefix in current function.
+  P              displays current function call.
+  PP             verbose display of current function, with source.
   SOURCE [n]     displays frame's source form with n levels of enclosing forms.
   VSOURCE [n]    displays frame's source form without any ellipsis.
+  DESCRIBE       describe the current function.
 
 Breakpoints and steps:
   LIST-LOCATIONS [{function | :c}]  list the locations for breakpoints.



More information about the cmucl-commit mailing list