From a0a413499415738d23cc40baa44e9c404af54a94 Mon Sep 17 00:00:00 2001 From: William Harold Newman Date: Wed, 28 May 2003 14:26:48 +0000 Subject: [PATCH] 0.8.0.12: added .cvsignore files in contrib/, and made corresponding changes in clean.sh (didn't clean up foo.c in clean.sh) (Maybe if we called it grovel-tmp.c or something I'd be more comfortable with its treewide autodeletion.) fixed #(1.2.3.4) thinko in sb-bsd-sockets docs (pointed out by Zachary Beane on sbcl-devel 2003-05-27) --- clean.sh | 6 +++++- contrib/asdf/.cvsignore | 1 + contrib/sb-aclrepl/.cvsignore | 1 + contrib/sb-bsd-sockets/.cvsignore | 4 ++++ contrib/sb-bsd-sockets/api-reference.html | 2 +- contrib/sb-executable/.cvsignore | 1 + contrib/sb-grovel/.cvsignore | 1 + contrib/sb-md5/.cvsignore | 1 + contrib/sb-posix/.cvsignore | 4 ++++ contrib/sb-rotate-byte/.cvsignore | 1 + contrib/sb-rt/.cvsignore | 1 + contrib/sb-simple-streams/.cvsignore | 4 ++++ src/code/defmacro.lisp | 2 +- version.lisp-expr | 2 +- 14 files changed, 27 insertions(+), 4 deletions(-) create mode 100644 contrib/asdf/.cvsignore create mode 100644 contrib/sb-aclrepl/.cvsignore create mode 100644 contrib/sb-bsd-sockets/.cvsignore create mode 100644 contrib/sb-executable/.cvsignore create mode 100644 contrib/sb-grovel/.cvsignore create mode 100644 contrib/sb-md5/.cvsignore create mode 100644 contrib/sb-posix/.cvsignore create mode 100644 contrib/sb-rotate-byte/.cvsignore create mode 100644 contrib/sb-rt/.cvsignore create mode 100644 contrib/sb-simple-streams/.cvsignore diff --git a/clean.sh b/clean.sh index bf5f974..c2bf8ad 100755 --- a/clean.sh +++ b/clean.sh @@ -50,7 +50,7 @@ done # probably machine-generated translation of DocBook (*.sgml) files # core # probably a Unix core dump -- not part of the sources anyway -# *.o, *.lib, *.nm +# *.o, *.lib, *.nm, a.out # results of C-style linking, assembling, etc. # *.core, *.map # looks like SBCL SAVE-LISP-AND-DIE or GENESIS output, and @@ -69,6 +69,8 @@ done # *.lisp-obj, *.fasl, *.x86f, *.axpf, *.lbytef, *.lib # typical extensions for fasl files (not just from SBCL, but # from other Lisp systems which might be used as xc hosts) +# test-passed +# generated by automatic directory-test-thyself procedure find . \( \ -type l -o \ -name '*~' -o \ @@ -90,7 +92,9 @@ find . \( \ -name '*.target-obj' -o \ -name '*.lib' -o \ -name '*.tmp' -o \ + -name '*.lisp-temp' -o \ -name '*.o' -o \ + -name 'a.out' -o \ -name 'sbcl' -o \ -name 'sbcl.h' -o \ -name 'depend' -o \ diff --git a/contrib/asdf/.cvsignore b/contrib/asdf/.cvsignore new file mode 100644 index 0000000..e805886 --- /dev/null +++ b/contrib/asdf/.cvsignore @@ -0,0 +1 @@ +test-passed diff --git a/contrib/sb-aclrepl/.cvsignore b/contrib/sb-aclrepl/.cvsignore new file mode 100644 index 0000000..e805886 --- /dev/null +++ b/contrib/sb-aclrepl/.cvsignore @@ -0,0 +1 @@ +test-passed diff --git a/contrib/sb-bsd-sockets/.cvsignore b/contrib/sb-bsd-sockets/.cvsignore new file mode 100644 index 0000000..1106a2c --- /dev/null +++ b/contrib/sb-bsd-sockets/.cvsignore @@ -0,0 +1,4 @@ +a.out +*.lisp-temp +foo.c +test-passed diff --git a/contrib/sb-bsd-sockets/api-reference.html b/contrib/sb-bsd-sockets/api-reference.html index 09e3f04..3651a60 100644 --- a/contrib/sb-bsd-sockets/api-reference.html +++ b/contrib/sb-bsd-sockets/api-reference.html @@ -118,7 +118,7 @@ sockopt-receive-low-water).

Class: INET-SOCKET diff --git a/contrib/sb-executable/.cvsignore b/contrib/sb-executable/.cvsignore new file mode 100644 index 0000000..e805886 --- /dev/null +++ b/contrib/sb-executable/.cvsignore @@ -0,0 +1 @@ +test-passed diff --git a/contrib/sb-grovel/.cvsignore b/contrib/sb-grovel/.cvsignore new file mode 100644 index 0000000..e805886 --- /dev/null +++ b/contrib/sb-grovel/.cvsignore @@ -0,0 +1 @@ +test-passed diff --git a/contrib/sb-md5/.cvsignore b/contrib/sb-md5/.cvsignore new file mode 100644 index 0000000..e805886 --- /dev/null +++ b/contrib/sb-md5/.cvsignore @@ -0,0 +1 @@ +test-passed diff --git a/contrib/sb-posix/.cvsignore b/contrib/sb-posix/.cvsignore new file mode 100644 index 0000000..1106a2c --- /dev/null +++ b/contrib/sb-posix/.cvsignore @@ -0,0 +1,4 @@ +a.out +*.lisp-temp +foo.c +test-passed diff --git a/contrib/sb-rotate-byte/.cvsignore b/contrib/sb-rotate-byte/.cvsignore new file mode 100644 index 0000000..e805886 --- /dev/null +++ b/contrib/sb-rotate-byte/.cvsignore @@ -0,0 +1 @@ +test-passed diff --git a/contrib/sb-rt/.cvsignore b/contrib/sb-rt/.cvsignore new file mode 100644 index 0000000..e805886 --- /dev/null +++ b/contrib/sb-rt/.cvsignore @@ -0,0 +1 @@ +test-passed diff --git a/contrib/sb-simple-streams/.cvsignore b/contrib/sb-simple-streams/.cvsignore new file mode 100644 index 0000000..8489d61 --- /dev/null +++ b/contrib/sb-simple-streams/.cvsignore @@ -0,0 +1,4 @@ +a.out +*.lisp-temp +foo.c +test-passed \ No newline at end of file diff --git a/src/code/defmacro.lisp b/src/code/defmacro.lisp index aec98f0..a889710 100644 --- a/src/code/defmacro.lisp +++ b/src/code/defmacro.lisp @@ -39,7 +39,7 @@ ,@local-decs (block ,name ,new-body))) - ;; if we want to move over to list-style names + ;; If we want to move over to list-style names ;; [e.g. (DEFMACRO FOO), maybe to support some XREF-like ;; functionality] here might be a good place to start. (debug-name (debug-namify "DEFMACRO ~S" name))) diff --git a/version.lisp-expr b/version.lisp-expr index 7656176..b5cfc60 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.0.11" +"0.8.0.12" -- 1.7.10.4