0.pre8.60
authorKevin Rosenberg <kevin@rosenberg.net>
Wed, 16 Apr 2003 04:07:13 +0000 (04:07 +0000)
committerKevin Rosenberg <kevin@rosenberg.net>
Wed, 16 Apr 2003 04:07:13 +0000 (04:07 +0000)
  * Rename :rf command to :focus

contrib/sb-aclrepl/repl.lisp
version.lisp-expr

index fe22375..930d2c4 100644 (file)
   (format *repl-output* "~&Threads are not supported in this version of sbcl")
   (values))
 
-(defun release-foreground-cmd ()
+(defun focus-cmd (&optional process)
   #+sb-thread
+  (when process
+    (format *repl-output* "~&Focusing on next thread waiting waiting for the debugger~%"))
   (progn
     (sb-thread:release-foreground)
     (sleep 1))
   #-sb-thread
+  (declare (ignore process))
   #-sb-thread
   (format *repl-output* "~&Threads are not supported in this version of sbcl")
   (values))
         ("istep" 1 istep-cmd "navigate within inspection of a lisp object" :parsing :string)
         #+sb-thread ("kill" 2 kill-cmd "kill (destroy) processes")
         #+sb-thread ("signal" 2 signal-cmd "send a signal to processes")
-        #+sb-thread ("rf" 2 release-foreground-cmd "release foreground")
+        #+sb-thread ("focus" 2 focus-cmd "focus the top level on a process")
         #+aclrepl-debugger("local" 3 local-cmd "print the value of a local variable")
         ("pwd" 3 pwd-cmd "print current directory")
         ("pushd" 2 pushd-cmd "push directory on stack" :parsing :string)
index 66bad71..e2de068 100644 (file)
@@ -18,4 +18,4 @@
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
 
-"0.pre8.60"
+"0.pre8.61"