From 66973734ef6a395f2f0ca9e3a52111d41a0aed25 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Tue, 17 Aug 2004 23:39:43 +0000 Subject: [PATCH] 0.8.13.73: Documentation oops * "When putting example snippets in docs, check that they actually work." --- doc/manual/start-stop.texinfo | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/manual/start-stop.texinfo b/doc/manual/start-stop.texinfo index 320a8b6..8e9df47 100644 --- a/doc/manual/start-stop.texinfo +++ b/doc/manual/start-stop.texinfo @@ -301,7 +301,8 @@ initialization file does the trick: @lisp ;;; If the first user-processable command-line argument is a filename, ;;; disable the debugger, load the file handling shebang-line and quit. -(let ((script (probe-file (second sb-ext:*posix-argv*)))) +(let ((script (and (second sb-ext:*posix-argv*) + (probe-file (second sb-ext:*posix-argv*))))) (when script ;; Handle the possible shebang-line (set-dispatch-macro-character #\# #\! diff --git a/version.lisp-expr b/version.lisp-expr index 24fb926..c2bb8fb 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.8.13.73" +"0.8.13.74" -- 1.7.10.4