0.8.0.12:
authorWilliam Harold Newman <william.newman@airmail.net>
Wed, 28 May 2003 14:26:48 +0000 (14:26 +0000)
committerWilliam Harold Newman <william.newman@airmail.net>
Wed, 28 May 2003 14:26:48 +0000 (14:26 +0000)
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)

14 files changed:
clean.sh
contrib/asdf/.cvsignore [new file with mode: 0644]
contrib/sb-aclrepl/.cvsignore [new file with mode: 0644]
contrib/sb-bsd-sockets/.cvsignore [new file with mode: 0644]
contrib/sb-bsd-sockets/api-reference.html
contrib/sb-executable/.cvsignore [new file with mode: 0644]
contrib/sb-grovel/.cvsignore [new file with mode: 0644]
contrib/sb-md5/.cvsignore [new file with mode: 0644]
contrib/sb-posix/.cvsignore [new file with mode: 0644]
contrib/sb-rotate-byte/.cvsignore [new file with mode: 0644]
contrib/sb-rt/.cvsignore [new file with mode: 0644]
contrib/sb-simple-streams/.cvsignore [new file with mode: 0644]
src/code/defmacro.lisp
version.lisp-expr

index bf5f974..c2bf8ad 100755 (executable)
--- 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 (file)
index 0000000..e805886
--- /dev/null
@@ -0,0 +1 @@
+test-passed
diff --git a/contrib/sb-aclrepl/.cvsignore b/contrib/sb-aclrepl/.cvsignore
new file mode 100644 (file)
index 0000000..e805886
--- /dev/null
@@ -0,0 +1 @@
+test-passed
diff --git a/contrib/sb-bsd-sockets/.cvsignore b/contrib/sb-bsd-sockets/.cvsignore
new file mode 100644 (file)
index 0000000..1106a2c
--- /dev/null
@@ -0,0 +1,4 @@
+a.out
+*.lisp-temp
+foo.c
+test-passed
index 09e3f04..3651a60 100644 (file)
@@ -118,7 +118,7 @@ sockopt-receive-low-water)</tt>.
 <ul>
 <li>These functions do not accept hostnames directly: see <a href="#name-service">name resolution</a>
 <li>Internet <b>addresses</b> are represented by vectors of <tt>(unsigned-byte 8)</tt> - viz. <tt>#(127 0 0 1)</tt>.  <b>Ports</b> are just integers: <tt>6010</tt>.  No conversion between network- and host-order data is needed from the user of this package.
-<li><b><i>socket addresses</i></b> are represented by the two values for <b>address</b> and <b>port</b>, so for example, <tt>(<a href="#SOCKET-CONNECT">socket-connect</a> s #(192.168.1.1) 80)</tt>
+<li><b><i>socket addresses</i></b> are represented by the two values for <b>address</b> and <b>port</b>, so for example, <tt>(<a href="#SOCKET-CONNECT">socket-connect</a> s #(192 168 1 1) 80)</tt>
 </ul>
 <P>
 <p><a name="INET-SOCKET"><i>Class: </i><b>INET-SOCKET</b></a>
diff --git a/contrib/sb-executable/.cvsignore b/contrib/sb-executable/.cvsignore
new file mode 100644 (file)
index 0000000..e805886
--- /dev/null
@@ -0,0 +1 @@
+test-passed
diff --git a/contrib/sb-grovel/.cvsignore b/contrib/sb-grovel/.cvsignore
new file mode 100644 (file)
index 0000000..e805886
--- /dev/null
@@ -0,0 +1 @@
+test-passed
diff --git a/contrib/sb-md5/.cvsignore b/contrib/sb-md5/.cvsignore
new file mode 100644 (file)
index 0000000..e805886
--- /dev/null
@@ -0,0 +1 @@
+test-passed
diff --git a/contrib/sb-posix/.cvsignore b/contrib/sb-posix/.cvsignore
new file mode 100644 (file)
index 0000000..1106a2c
--- /dev/null
@@ -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 (file)
index 0000000..e805886
--- /dev/null
@@ -0,0 +1 @@
+test-passed
diff --git a/contrib/sb-rt/.cvsignore b/contrib/sb-rt/.cvsignore
new file mode 100644 (file)
index 0000000..e805886
--- /dev/null
@@ -0,0 +1 @@
+test-passed
diff --git a/contrib/sb-simple-streams/.cvsignore b/contrib/sb-simple-streams/.cvsignore
new file mode 100644 (file)
index 0000000..8489d61
--- /dev/null
@@ -0,0 +1,4 @@
+a.out
+*.lisp-temp
+foo.c
+test-passed
\ No newline at end of file
index aec98f0..a889710 100644 (file)
@@ -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)))
index 7656176..b5cfc60 100644 (file)
@@ -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"