* "When putting example snippets in docs,
check that they actually work."
@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 #\# #\!
;;; 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"