From 8e11355be91fd1fcadfa575f992a7ee73e4a027a Mon Sep 17 00:00:00 2001 From: Kevin Rosenberg Date: Thu, 15 May 2003 16:21:41 +0000 Subject: [PATCH] 0.8alpha.0.31: * sb-aclrepl/sb-aclrepl.asd: Remove compilation note workaround * sb-aclrepl/repl.lisp: add a few needed newlines to output --- contrib/sb-aclrepl/repl.lisp | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/sb-aclrepl/repl.lisp b/contrib/sb-aclrepl/repl.lisp index f5830dbdd..b77d107de 100644 --- a/contrib/sb-aclrepl/repl.lisp +++ b/contrib/sb-aclrepl/repl.lisp @@ -180,7 +180,7 @@ (defun process-history-search (pattern cmd-args-string) (let ((cmd (find-history-matching-pattern pattern))) (unless cmd - (format *output* "No match on history list with pattern ~S" pattern) + (format *output* "No match on history list with pattern ~S~%" pattern) (return-from process-history-search *null-cmd*)) (maybe-return-history-cmd cmd cmd-args-string))) @@ -411,6 +411,7 @@ (defun apropos-cmd (string) (apropos (string-upcase string)) + (fresh-line *output*) (values)) (let ((last-files-loaded nil)) diff --git a/version.lisp-expr b/version.lisp-expr index d6a55012b..1ea252d76 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.8alpha.0.30" +"0.8alpha.0.31" -- 2.11.4.GIT