Changeset 14282
- Timestamp:
- 12/03/12 04:12:54 (8 years ago)
- Location:
- branches/1.1.x/doc/manual
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1.x/doc/manual/Makefile
r14266 r14282 9 9 pdflatex abcl.tex 10 10 11 ABCL = /Users/evenson/work/abcl-1.1.x/abcl 11 #ABCL = abcl 12 ABCL = ../../abcl 13 #ABCL = /Users/evenson/work/abcl-1.1.x/abcl 12 14 15 # XXX TODO 1) use more compact iterated form, 2) pare down to using --noinit 13 16 grovel: 14 $(ABCL) --batch --noinform --load "grovel.lisp" --eval '(progn (grovel-docstrings-as-tex (find-package :java)) (grovel-docstrings-as-tex (find-package :extensions)) (grovel-docstrings-as-tex (find-package :threads)))' 17 $(ABCL) --batch --noinform --load "grovel.lisp" \ 18 --eval '(grovel-docstrings-as-tex (find-package :java)' \ 19 --eval '(grovel-docstrings-as-tex (find-package :extensions))' \ 20 --eval '(grovel-docstrings-as-tex (find-package :threads))' \ 21 --eval '(grovel-docstrings-as-tex (find-package :system))' \ 22 --eval '(progn (require :abcl-contrib) (require :jss) (grovel-docstrings-as-tex (find-package :jss)))' 15 23 16 24 clean: -
branches/1.1.x/doc/manual/abcl.tex
r14280 r14282 19 19 \tableofcontents 20 20 21 \chapter{Preface}22 21 %%Preface to the second edition, abcl-1.1.0. 23 \section{ Second Edition}22 \section{Preface to the Second Edition} 24 23 ABCL 1.1 now contains (A)MOP. We hope you enjoy! --The Mgmt. 25 24 … … 1261 1260 on January 10, 2012. 1262 1261 1263 In December 2012, we we revised the implementation--adding (A)MOP--with 1264 the release of abcl-1.1.0 and accumulated changes to this manual. 1262 In December 2012, we we revised the implementation with 1263 the release of abcl-1.1.0 by adding (A)MOP. 1264 1265 \chapter{Appendix SYSTEM} 1266 1267 \include{system} 1268 1269 \chapter{Appendix JSS} 1270 1271 \include{jss} 1272 1265 1273 1266 1274 \bibliography{abcl} -
branches/1.1.x/doc/manual/extensions.tex
r14266 r14282 131 131 132 132 \begin{adjustwidth}{5em}{5em} 133 not-documented 133 No-op setting of write timeout to SECONDS on SOCKET. 134 134 \end{adjustwidth} 135 135 … … 871 871 872 872 \begin{adjustwidth}{5em}{5em} 873 Time in SECONDS to set local implementation of SO\_CREVTIMEOon SOCKET.873 Time in SECONDS to set local implementation of 'SO\_RCVTIMEO' on SOCKET. 874 874 \end{adjustwidth} 875 875 -
branches/1.1.x/doc/manual/grovel.lisp
r13858 r14282 1 1 (in-package :cl-user) 2 2 (defun grovel-docstrings-as-tex (&optional (package (find-package :java))) 3 3 (let ((output-file (format nil "~A.tex" (string-downcase (package-name package))))) -
branches/1.1.x/doc/manual/threads.tex
r14266 r14282 5 5 6 6 \begin{adjustwidth}{5em}{5em} 7 not-documented 7 Returns non-NIL if the mailbox can be read from, NIL otherwise. 8 8 \end{adjustwidth} 9 9
Note: See TracChangeset
for help on using the changeset viewer.