From: <cli...@li...> - 2005-01-25 14:37:15
|
Send clisp-cvs mailing list submissions to cli...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/clisp-cvs or, via email, send a message with subject or body 'help' to cli...@li... You can reach the person managing the list at cli...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of clisp-cvs digest..." CLISP CVS commits for today Today's Topics: 1. clisp/src ChangeLog,1.4147,1.4148 (Bruno Haible) 2. clisp/modules/i18n configure.in,1.3,1.4 gettext.c,1.5,1.6 (Bruno Haible) 3. clisp/modules/syscalls config.h.in,1.18,1.19 configure,1.19,1.20 (Bruno Haible) 4. clisp/src configure,1.109,1.110 (Bruno Haible) 5. clisp/modules/bindings/win32 win32.lisp,1.12,1.13 (Sam Steingold) 6. clisp/modules/dirkey dirkey.c,1.13,1.14 (Sam Steingold) 7. clisp/modules/bindings/glibc linux.lisp,1.16,1.17 (Sam Steingold) 8. clisp/modules/berkeley-db bdb.c,1.56,1.57 (Sam Steingold) 9. clisp/utils modprep.lisp,1.23,1.24 (Sam Steingold) 10. clisp/modules/wildcard wildcard.lisp,1.9,1.10 (Sam Steingold) 11. clisp/modules/syscalls configure.in,1.20,1.21 calls.c,1.62,1.63 (Sam Steingold) 12. clisp/modules/i18n gettext.c,1.6,1.7 (Sam Steingold) 13. clisp/modules/matlab matlab.lisp,1.6,1.7 (Sam Steingold) 14. clisp/modules/postgresql postgresql.lisp,1.9,1.10 (Sam Steingold) 15. clisp/modules/rawsock sock.lisp,1.11,1.12 rawsock.c,1.19,1.20 (Sam Steingold) 16. clisp/modules/pari pari.lisp,1.4,1.5 (Sam Steingold) 17. clisp/modules/netica netica.lisp,1.10,1.11 (Sam Steingold) 18. clisp/src unixaux.d,1.50,1.51 type.lisp,1.71,1.72 time.d,1.44,1.45 subr.d,1.200,1.201 stream.d,1.498,1.499 socket.d,1.88,1.89 lispbibl.d,1.606,1.607 lambdalist.lisp,1.10,1.11 io.d,1.279,1.280 inspect.lisp,1.25,1.26 genclisph.d,1.166,1.167 foreign1.lisp,1.78,1.79 eval.d,1.185,1.186 defstruct.lisp,1.69,1.70 control.d,1.123,1.124 constsym.d,1.290,1.291 constobj.d,1.167,1.168 clos-class6.lisp,1.34,1.35 clos-class4.lisp,1.16,1.17 clos-class1.lisp,1.30,1.31 (Sam Steingold) --__--__-- Message: 1 From: Bruno Haible <ha...@us...> To: cli...@li... Subject: clisp/src ChangeLog,1.4147,1.4148 Date: Tue, 25 Jan 2005 10:04:11 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30730/src Modified Files: ChangeLog Log Message: Assume <string.h>, <locale.h>, setlocale() exist. Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.4147 retrieving revision 1.4148 diff -u -d -r1.4147 -r1.4148 --- ChangeLog 25 Jan 2005 09:37:51 -0000 1.4147 +++ ChangeLog 25 Jan 2005 10:04:05 -0000 1.4148 @@ -1,3 +1,8 @@ +2005-01-25 Bruno Haible <br...@cl...> + + * i18n/configure.in: Don't test for locale.h and setlocale. + * i18n/gettext.c: Assume <string.h>, <locale.h>, setlocale() exist. + 2005-01-24 Bruno Haible <br...@cl...> * stream.d (read_byte, wr_ch_unbuffered_unix, --__--__-- Message: 2 From: Bruno Haible <ha...@us...> To: cli...@li... Subject: clisp/modules/i18n configure.in,1.3,1.4 gettext.c,1.5,1.6 Date: Tue, 25 Jan 2005 10:04:11 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/i18n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30730/modules/i18n Modified Files: configure.in gettext.c Log Message: Assume <string.h>, <locale.h>, setlocale() exist. Index: gettext.c =================================================================== RCS file: /cvsroot/clisp/clisp/modules/i18n/gettext.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- gettext.c 25 Jan 2005 09:26:25 -0000 1.5 +++ gettext.c 25 Jan 2005 10:04:09 -0000 1.6 @@ -13,12 +13,8 @@ #include "clisp.h" #include "config.h" -#if HAVE_STRING_H -# include <string.h> /* strncpy() */ -#endif -#if defined(HAVE_LOCALE_H) -# include <locale.h> -#endif +#include <string.h> /* strncpy() */ +#include <locale.h> #if defined(HAVE_LANGINFO_H) # include <langinfo.h> #endif @@ -197,7 +193,7 @@ /* ======================== locale ======================== */ -#if defined(HAVE_SETLOCALE) + DEFUN(I18N:SET-LOCALE, &optional category locale) { /* call setlocale(3) */ gcv_object_t *category = &STACK_1; @@ -244,7 +240,6 @@ } skipSTACK(2); } -#endif #if defined(HAVE_LOCALECONV) static void thousands_sep_to_STACK (char* sep1000) { Index: configure.in =================================================================== RCS file: /cvsroot/clisp/clisp/modules/i18n/configure.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- configure.in 26 Oct 2004 00:05:01 -0000 1.3 +++ configure.in 25 Jan 2005 10:04:08 -0000 1.4 @@ -10,8 +10,8 @@ AC_HEADER_STDC AC_MSG_NOTICE([ * I18N (locale):]) -AC_CHECK_HEADERS(locale.h langinfo.h) -AC_CHECK_FUNCS(setlocale nl_langinfo localeconv) +AC_CHECK_HEADERS(langinfo.h) +AC_CHECK_FUNCS(nl_langinfo localeconv) AC_CHECK_MEMBERS([struct lconv.int_p_cs_precedes, struct lconv.int_n_cs_precedes, struct lconv.int_p_sep_by_space, struct lconv.int_n_sep_by_space, struct lconv.int_p_sign_posn, --__--__-- Message: 3 From: Bruno Haible <ha...@us...> To: cli...@li... Subject: clisp/modules/syscalls config.h.in,1.18,1.19 configure,1.19,1.20 Date: Tue, 25 Jan 2005 10:34:17 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/syscalls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5097/modules/syscalls Modified Files: config.h.in configure Log Message: Regenerated. Index: config.h.in =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/config.h.in,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- config.h.in 11 Jan 2005 22:20:24 -0000 1.18 +++ config.h.in 25 Jan 2005 10:34:14 -0000 1.19 @@ -18,6 +18,10 @@ /* Define to 1 if you have the <crypt.h> header file. */ #undef HAVE_CRYPT_H +/* Define to 1 if you have the declaration of `lgamma_r', and to 0 if you + don't. */ +#undef HAVE_DECL_LGAMMA_R + /* Define to 1 if you have the declaration of `signgam', and to 0 if you don't. */ #undef HAVE_DECL_SIGNGAM @@ -86,9 +90,6 @@ /* Define to 1 if you have the `lgamma' function. */ #undef HAVE_LGAMMA -/* Define to 1 if you have the `lgamma_r' function. */ -#undef HAVE_LGAMMA_R - /* Define to 1 if you have the `link' function. */ #undef HAVE_LINK Index: configure =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/configure,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- configure 11 Jan 2005 22:20:24 -0000 1.19 +++ configure 25 Jan 2005 10:34:14 -0000 1.20 @@ -3639,8 +3639,7 @@ - -for ac_func in erf erfc lgamma lgamma_r fstatvfs statvfs +for ac_func in erf erfc lgamma fstatvfs statvfs do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 @@ -3741,6 +3740,79 @@ fi done +echo "$as_me:$LINENO: checking whether lgamma_r is declared" >&5 +echo $ECHO_N "checking whether lgamma_r is declared... $ECHO_C" >&6 +if test "${ac_cv_have_decl_lgamma_r+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <math.h> + +int +main () +{ +#ifndef lgamma_r + char *p = (char *) lgamma_r; +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_have_decl_lgamma_r=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_have_decl_lgamma_r=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_have_decl_lgamma_r" >&5 +echo "${ECHO_T}$ac_cv_have_decl_lgamma_r" >&6 +if test $ac_cv_have_decl_lgamma_r = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_DECL_LGAMMA_R 1 +_ACEOF + + +else + cat >>confdefs.h <<_ACEOF +#define HAVE_DECL_LGAMMA_R 0 +_ACEOF + + +fi + + echo "$as_me:$LINENO: checking whether signgam is declared" >&5 echo $ECHO_N "checking whether signgam is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_signgam+set}" = set; then --__--__-- Message: 4 From: Bruno Haible <ha...@us...> To: cli...@li... Subject: clisp/src configure,1.109,1.110 Date: Tue, 25 Jan 2005 10:34:16 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5097/src Modified Files: configure Log Message: Regenerated. Index: configure =================================================================== RCS file: /cvsroot/clisp/clisp/src/configure,v retrieving revision 1.109 retrieving revision 1.110 diff -u -d -r1.109 -r1.110 --- configure 10 Dec 2004 17:36:43 -0000 1.109 +++ configure 25 Jan 2005 10:33:58 -0000 1.110 @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in,v 1.83 2004/12/10 16:11:23 sds Exp . +# From configure.in Id: configure.in,v 1.84 2005/01/25 09:29:38 haible Exp . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for GNU CLISP 2.33.80 (2004-11-27). # @@ -315,7 +315,7 @@ # include <unistd.h> #endif" -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CPP RANLIB INSTALL INSTALL_PROGRAM INSTALL_DATA CP LN LN_S HLN GROFF EGREP CC_GCC GCC_X_NONE CC_CPLUSPLUS CC_NEED_CCPAUX CC_NEED_DEEMA AS_UNDERSCORE build build_cpu build_vendor build_os host host_cpu host_vendor host_os LIBICONV LTLIBICONV SET_MAKE INSTALL_SCRIPT MKINSTALLDIRS MSGFMT GMSGFMT XGETTEXT MSGMERGE USE_NLS INTLLIBS LIBINTL LTLIBINTL POSUB LIBSIGSEGV LTLIBSIGSEGV HAVE__BOOL STDBOOL_H HAVE_LONG_64BIT HAVE_LONGLONG_64BIT STDINT_H HAVE_XMKMF X_INCLUDES X_LIBS GMALLOC ALLOCA LIBTERMCAP PACKAGE LIBOBJS LTLIBOBJS' +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CPP RANLIB INSTALL INSTALL_PROGRAM INSTALL_DATA CP LN LN_S HLN GROFF DVIPDF EGREP CC_GCC GCC_X_NONE CC_CPLUSPLUS CC_NEED_CCPAUX CC_NEED_DEEMA AS_UNDERSCORE build build_cpu build_vendor build_os host host_cpu host_vendor host_os LIBICONV LTLIBICONV SET_MAKE INSTALL_SCRIPT MKINSTALLDIRS MSGFMT GMSGFMT XGETTEXT MSGMERGE USE_NLS INTLLIBS LIBINTL LTLIBINTL POSUB LIBSIGSEGV LTLIBSIGSEGV HAVE__BOOL STDBOOL_H HAVE_LONG_64BIT HAVE_LONGLONG_64BIT STDINT_H HAVE_XMKMF X_INCLUDES X_LIBS GMALLOC ALLOCA LIBTERMCAP PACKAGE LIBOBJS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. @@ -2749,6 +2749,41 @@ echo "${ECHO_T}no" >&6 fi +# Extract the first word of "dvipdf", so it can be a program name with args. +set dummy dvipdf; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_prog_DVIPDF+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$DVIPDF"; then + ac_cv_prog_DVIPDF="$DVIPDF" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DVIPDF="dvipdf" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +DVIPDF=$ac_cv_prog_DVIPDF +if test -n "$DVIPDF"; then + echo "$as_me:$LINENO: result: $DVIPDF" >&5 +echo "${ECHO_T}$DVIPDF" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + { echo "$as_me:$LINENO: * checks for UNIX variants that set DEFS" >&5 echo "$as_me: * checks for UNIX variants that set DEFS" >&6;} @@ -24968,6 +25003,7 @@ s,@LN_S@,$LN_S,;t t s,@HLN@,$HLN,;t t s,@GROFF@,$GROFF,;t t +s,@DVIPDF@,$DVIPDF,;t t s,@EGREP@,$EGREP,;t t s,@CC_GCC@,$CC_GCC,;t t s,@GCC_X_NONE@,$GCC_X_NONE,;t t --__--__-- Message: 5 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/bindings/win32 win32.lisp,1.12,1.13 Date: Tue, 25 Jan 2005 14:35:18 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/bindings/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/bindings/win32 Modified Files: win32.lisp Log Message: (c)year Index: win32.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/modules/bindings/win32/win32.lisp,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- win32.lisp 24 Jan 2005 18:33:54 -0000 1.12 +++ win32.lisp 25 Jan 2005 14:35:15 -0000 1.13 @@ -1,5 +1,5 @@ ;; Foreign functions provided by the win32 system libraries -;; Sam Steingold 2003 +;; Sam Steingold 2003-2005 (defpackage "WIN32" (:nicknames "WOE32" "W32") --__--__-- Message: 6 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/dirkey dirkey.c,1.13,1.14 Date: Tue, 25 Jan 2005 14:35:17 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/dirkey In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/dirkey Modified Files: dirkey.c Log Message: (c)year Index: dirkey.c =================================================================== RCS file: /cvsroot/clisp/clisp/modules/dirkey/dirkey.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- dirkey.c 11 Jan 2005 16:29:56 -0000 1.13 +++ dirkey.c 25 Jan 2005 14:35:15 -0000 1.14 @@ -1,6 +1,6 @@ /* * CLISP: directory key: win32 registry, LDAP, Gnome-config - * Copyright (C) 2000-2003 by Sam Steingold + * Copyright (C) 2000-2005 by Sam Steingold */ /* have to undefing UNICODE _here_ because clisp.h will #include <windows.h> */ --__--__-- Message: 7 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/bindings/glibc linux.lisp,1.16,1.17 Date: Tue, 25 Jan 2005 14:35:19 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/bindings/glibc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/bindings/glibc Modified Files: linux.lisp Log Message: (c)year Index: linux.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/modules/bindings/glibc/linux.lisp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- linux.lisp 24 Jan 2005 18:33:55 -0000 1.16 +++ linux.lisp 25 Jan 2005 14:35:16 -0000 1.17 @@ -1,7 +1,7 @@ ;; Foreign functions provided by the Linux C library version 6, ;; i.e. the GNU C library version 2.0.7. ;; Bruno Haible 10.4.1998, 19.4.1998 -;; Sam Steingold 2002-2003 +;; Sam Steingold 2002-2005 (defpackage "LINUX" (:modern t) --__--__-- Message: 8 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/berkeley-db bdb.c,1.56,1.57 Date: Tue, 25 Jan 2005 14:35:24 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/berkeley-db In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/berkeley-db Modified Files: bdb.c Log Message: (c)year Index: bdb.c =================================================================== RCS file: /cvsroot/clisp/clisp/modules/berkeley-db/bdb.c,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- bdb.c 17 Jan 2005 19:06:01 -0000 1.56 +++ bdb.c 25 Jan 2005 14:35:17 -0000 1.57 @@ -1,6 +1,6 @@ /* * CLISP: Berkeley-DB <http://www.sleepycat.com/docs/api_c/> - * Copyright (C) 2003-2004 by Sam Steingold + * Copyright (C) 2003-2005 by Sam Steingold */ /* have to undefing UNICODE _here_ because clisp.h will #include <windows.h> */ --__--__-- Message: 9 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/utils modprep.lisp,1.23,1.24 Date: Tue, 25 Jan 2005 14:35:00 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/utils In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/utils Modified Files: modprep.lisp Log Message: (c)year Index: modprep.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/utils/modprep.lisp,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- modprep.lisp 17 Jan 2005 19:03:33 -0000 1.23 +++ modprep.lisp 25 Jan 2005 14:34:57 -0000 1.24 @@ -1,7 +1,7 @@ ;;; MODPREP - CLISP module preprocessor ;;; ;;; Copyright (C) 1998 Bruno Haible (20.9.1998, 10.-11.10.1998) [C] -;;; Copyright (C) 2003 by Sam Steingold [lisp] +;;; Copyright (C) 2003-2005 by Sam Steingold [lisp] ;;; This is Free Software, covered by the GNU GPL (v2) ;;; See http://www.gnu.org/copyleft/gpl.html #| This preprocessor generates all necessary tables for a CLISP module. --__--__-- Message: 10 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/wildcard wildcard.lisp,1.9,1.10 Date: Tue, 25 Jan 2005 14:35:14 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/wildcard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/wildcard Modified Files: wildcard.lisp Log Message: (c)year Index: wildcard.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/modules/wildcard/wildcard.lisp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- wildcard.lisp 24 Jan 2005 18:33:35 -0000 1.9 +++ wildcard.lisp 25 Jan 2005 14:35:12 -0000 1.10 @@ -1,6 +1,6 @@ ;; Module for wildcard matching in CLISP ;; Bruno Haible 18.4.1995 -;; Sam Steingold 2001-2004 +;; Sam Steingold 2001-2005 (defpackage "WILDCARD" (:modern t) --__--__-- Message: 11 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/syscalls configure.in,1.20,1.21 calls.c,1.62,1.63 Date: Tue, 25 Jan 2005 14:35:15 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/syscalls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/syscalls Modified Files: configure.in calls.c Log Message: (c)year Index: calls.c =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/calls.c,v retrieving revision 1.62 retrieving revision 1.63 diff -u -d -r1.62 -r1.63 --- calls.c 25 Jan 2005 09:28:24 -0000 1.62 +++ calls.c 25 Jan 2005 14:35:12 -0000 1.63 @@ -1,6 +1,6 @@ /* * system calls - * Copyright (C) 2003-2004 Sam Steingold + * Copyright (C) 2003-2005 Sam Steingold * Copyright (C) 2005 Bruno Haible * Copyright (C) 2005 Arseny Slobodyuk * GPL2 Index: configure.in =================================================================== RCS file: /cvsroot/clisp/clisp/modules/syscalls/configure.in,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- configure.in 25 Jan 2005 09:28:24 -0000 1.20 +++ configure.in 25 Jan 2005 14:35:12 -0000 1.21 @@ -1,5 +1,5 @@ dnl AUTOCONF configuration for syscalls -dnl Copyright (C) 2003-2004 Sam Steingold <sd...@gn...> +dnl Copyright (C) 2003-2005 Sam Steingold <sd...@gn...> dnl GNU GPL2 AC_PREREQ(2.57) --__--__-- Message: 12 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/i18n gettext.c,1.6,1.7 Date: Tue, 25 Jan 2005 14:35:17 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/i18n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/i18n Modified Files: gettext.c Log Message: (c)year Index: gettext.c =================================================================== RCS file: /cvsroot/clisp/clisp/modules/i18n/gettext.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- gettext.c 25 Jan 2005 10:04:09 -0000 1.6 +++ gettext.c 25 Jan 2005 14:35:15 -0000 1.7 @@ -1,7 +1,7 @@ /* * ======= General internationalization, for Lisp programs too ======= * Copyright (C) 1990-2005 Bruno Haible - * Copyright (C) 1998-2004 Sam Steingold + * Copyright (C) 1998-2005 Sam Steingold * GPL2 */ --__--__-- Message: 13 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/matlab matlab.lisp,1.6,1.7 Date: Tue, 25 Jan 2005 14:35:17 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/matlab In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/matlab Modified Files: matlab.lisp Log Message: (c)year Index: matlab.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/modules/matlab/matlab.lisp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- matlab.lisp 24 Jan 2005 18:33:53 -0000 1.6 +++ matlab.lisp 25 Jan 2005 14:35:15 -0000 1.7 @@ -1,7 +1,7 @@ ;;; Matlab API interface ;;; <http://www.mathworks.com/access/helpdesk/help/techdoc/apiref/apiref.shtml> ;;; -;;; Copyright (C) 2004 by Sam Steingold +;;; Copyright (C) 2004-2005 by Sam Steingold ;;; This is Free Software, covered by the GNU GPL (v2) ;;; See http://www.gnu.org/copyleft/gpl.html --__--__-- Message: 14 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/postgresql postgresql.lisp,1.9,1.10 Date: Tue, 25 Jan 2005 14:35:15 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/postgresql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/postgresql Modified Files: postgresql.lisp Log Message: (c)year Index: postgresql.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/modules/postgresql/postgresql.lisp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- postgresql.lisp 24 Jan 2005 18:33:36 -0000 1.9 +++ postgresql.lisp 25 Jan 2005 14:35:13 -0000 1.10 @@ -1,4 +1,6 @@ -;; Foreign functions provided by PostgreSQL +;; CLISP interface to PostgreSQL <http://www.postgresql.org/> +;; Copyright (C) 1999-2005 Sam Steingold +;; This is free software, distributed under the GNU GPL 2 (pushnew :PostgreSQL *features*) --__--__-- Message: 15 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/rawsock sock.lisp,1.11,1.12 rawsock.c,1.19,1.20 Date: Tue, 25 Jan 2005 14:35:15 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/rawsock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/rawsock Modified Files: sock.lisp rawsock.c Log Message: (c)year Index: rawsock.c =================================================================== RCS file: /cvsroot/clisp/clisp/modules/rawsock/rawsock.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- rawsock.c 17 Jan 2005 19:05:54 -0000 1.19 +++ rawsock.c 25 Jan 2005 14:35:13 -0000 1.20 @@ -2,7 +2,7 @@ * Module for Raw Sockets / CLISP * Fred Cohen, 2003-2004 * Don Cohen, 2003-2004 - * Sam Steingold 2004 + * Sam Steingold 2004-2005 * <http://www.opengroup.org/onlinepubs/007908799/xns/syssocket.h.html> */ Index: sock.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/modules/rawsock/sock.lisp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- sock.lisp 6 Jan 2005 20:45:03 -0000 1.11 +++ sock.lisp 25 Jan 2005 14:35:13 -0000 1.12 @@ -1,7 +1,7 @@ ;; Module for Raw Sockets / CLISP ;; Fred Cohen, 2003-2004 ;; Don Cohen, 2003-2004 -;; Sam Steingold 2004 +;; Sam Steingold 2004-2005 ;; <http://www.opengroup.org/onlinepubs/007908799/xns/syssocket.h.html> (defpackage #:rawsock --__--__-- Message: 16 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/pari pari.lisp,1.4,1.5 Date: Tue, 25 Jan 2005 14:35:16 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/pari In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/pari Modified Files: pari.lisp Log Message: (c)year Index: pari.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/modules/pari/pari.lisp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- pari.lisp 24 Jan 2005 18:33:38 -0000 1.4 +++ pari.lisp 25 Jan 2005 14:35:13 -0000 1.5 @@ -1,6 +1,6 @@ ;; CLISP interface to PARI <http://pari.math.u-bordeaux.fr/> ;; Copyright (C) 1995 Michael Stoll -;; Copyright (C) 2004 Sam Steingold +;; Copyright (C) 2004-2005 Sam Steingold ;; This is free software, distributed under the GNU GPL (defpackage #:pari --__--__-- Message: 17 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/netica netica.lisp,1.10,1.11 Date: Tue, 25 Jan 2005 14:35:17 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/netica In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/modules/netica Modified Files: netica.lisp Log Message: (c)year Index: netica.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/modules/netica/netica.lisp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- netica.lisp 24 Jan 2005 18:33:51 -0000 1.10 +++ netica.lisp 25 Jan 2005 14:35:14 -0000 1.11 @@ -1,7 +1,7 @@ ;;; Netica API interface ;;; <http://norsys.com/netica_c_api.htm> ;;; -;;; Copyright (C) 2003 by Sam Steingold +;;; Copyright (C) 2003-2005 by Sam Steingold ;;; This is Free Software, covered by the GNU GPL (v2) ;;; See http://www.gnu.org/copyleft/gpl.html --__--__-- Message: 18 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/src unixaux.d,1.50,1.51 type.lisp,1.71,1.72 time.d,1.44,1.45 subr.d,1.200,1.201 stream.d,1.498,1.499 socket.d,1.88,1.89 lispbibl.d,1.606,1.607 lambdalist.lisp,1.10,1.11 io.d,1.279,1.280 inspect.lisp,1.25,1.26 genclisph.d,1.166,1.167 foreign1.lisp,1.78,1.79 eval.d,1.185,1.186 defstruct.lisp,1.69,1.70 control.d,1.123,1.124 constsym.d,1.290,1.291 constobj.d,1.167,1.168 clos-class6.lisp,1.34,1.35 clos-class4.lisp,1.16,1.17 clos-class1.lisp,1.30,1.31 Date: Tue, 25 Jan 2005 14:35:14 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31659/src Modified Files: unixaux.d type.lisp time.d subr.d stream.d socket.d lispbibl.d lambdalist.lisp io.d inspect.lisp genclisph.d foreign1.lisp eval.d defstruct.lisp control.d constsym.d constobj.d clos-class6.lisp clos-class4.lisp clos-class1.lisp Log Message: (c)year Index: clos-class6.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/src/clos-class6.lisp,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- clos-class6.lisp 4 Jan 2005 18:18:27 -0000 1.34 +++ clos-class6.lisp 25 Jan 2005 14:35:12 -0000 1.35 @@ -2,6 +2,7 @@ ;;;; Class metaobjects ;;;; Part n-1: Generic functions specified in the MOP. ;;;; Bruno Haible 2004-05-25 +;;;; Sam Steingold 2005 (in-package "CLOS") Index: io.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/io.d,v retrieving revision 1.279 retrieving revision 1.280 diff -u -d -r1.279 -r1.280 --- io.d 25 Jan 2005 09:19:33 -0000 1.279 +++ io.d 25 Jan 2005 14:35:08 -0000 1.280 @@ -2,7 +2,7 @@ * Input/Output for CLISP * Bruno Haible 1990-2005 * Marcus Daniels 11.3.1997 - * Sam Steingold 1998-2004 + * Sam Steingold 1998-2005 * German comments translated into English: Stefan Kain 2001-06-12 */ Index: clos-class4.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/src/clos-class4.lisp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- clos-class4.lisp 4 Jan 2005 18:18:27 -0000 1.16 +++ clos-class4.lisp 25 Jan 2005 14:35:12 -0000 1.17 @@ -2,6 +2,7 @@ ;;;; Class metaobjects ;;;; Part n-2: Final class definitions, make/initialize-instance methods. ;;;; Bruno Haible 2004-05-25 +;;;; Sam Steingold 2005 (in-package "CLOS") Index: time.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/time.d,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- time.d 24 Jan 2005 10:26:10 -0000 1.44 +++ time.d 25 Jan 2005 14:34:58 -0000 1.45 @@ -1,7 +1,7 @@ /* * Time measuring functions for CLISP * Bruno Haible 1990-2004 - * Sam Steingold 1998-2003 + * Sam Steingold 1998-2005 */ #include "lispbibl.c" Index: subr.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/subr.d,v retrieving revision 1.200 retrieving revision 1.201 diff -u -d -r1.200 -r1.201 --- subr.d 24 Jan 2005 10:45:18 -0000 1.200 +++ subr.d 25 Jan 2005 14:34:58 -0000 1.201 @@ -1,7 +1,7 @@ /* * list of all SUBRs * Bruno Haible 1990-2005 - * Sam Steingold 1998-2004 + * Sam Steingold 1998-2005 */ /* A C-compiled LISP-function is defined by a declaration Index: control.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/control.d,v retrieving revision 1.123 retrieving revision 1.124 diff -u -d -r1.123 -r1.124 --- control.d 21 Jan 2005 18:37:01 -0000 1.123 +++ control.d 25 Jan 2005 14:35:11 -0000 1.124 @@ -1,7 +1,7 @@ /* * Special Forms, Control Structures, Evaluator Related Stuff for CLISP * Bruno Haible 1990-2005 - * Sam Steingold 1998-2003 + * Sam Steingold 1998-2005 * German comments translated into English: Stefan Kain 2002-09-28 */ Index: eval.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/eval.d,v retrieving revision 1.185 retrieving revision 1.186 diff -u -d -r1.185 -r1.186 --- eval.d 20 Jan 2005 20:43:28 -0000 1.185 +++ eval.d 25 Jan 2005 14:35:09 -0000 1.186 @@ -1,7 +1,7 @@ /* * EVAL, APPLY and bytecode interpreter for CLISP * Bruno Haible 1990-2005 - * Sam Steingold 1998-2004 + * Sam Steingold 1998-2005 * German comments translated into English: Stefan Kain 2001-08-13 */ #include "lispbibl.c" Index: type.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/src/type.lisp,v retrieving revision 1.71 retrieving revision 1.72 diff -u -d -r1.71 -r1.72 --- type.lisp 21 Jan 2005 11:46:02 -0000 1.71 +++ type.lisp 25 Jan 2005 14:34:58 -0000 1.72 @@ -1,6 +1,7 @@ ;;;; TYPEP und Verwandtes ;;;; Michael Stoll, 21. 10. 1988 ;;;; Bruno Haible, 10.6.1989 +;;;; Sam Steingold 2000-2005 ;;; Datenstrukturen für TYPEP: ;;; - Ein Type-Specifier-Symbol hat auf seiner Propertyliste unter dem Index: clos-class1.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/src/clos-class1.lisp,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- clos-class1.lisp 21 Jan 2005 11:38:39 -0000 1.30 +++ clos-class1.lisp 25 Jan 2005 14:35:12 -0000 1.31 @@ -2,6 +2,7 @@ ;;;; Class metaobjects ;;;; Part 1: Class definitions, preliminary accessors. ;;;; Bruno Haible 2004-05-25 +;;;; Sam Steingold 2005 (in-package "CLOS") Index: stream.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/stream.d,v retrieving revision 1.498 retrieving revision 1.499 diff -u -d -r1.498 -r1.499 --- stream.d 25 Jan 2005 09:37:28 -0000 1.498 +++ stream.d 25 Jan 2005 14:34:59 -0000 1.499 @@ -1,9 +1,11 @@ -# Streams for CLISP -# Bruno Haible 1990-2005 -# Sam Steingold 1998-2004 -# Generic Streams: Marcus Daniels 8.4.1994 -# SCREEN package for Win32: Arseny Slobodjuck 2001-02-14 -# German comments translated into English: Stefan Kain 2001-11-02 +/* + * Streams for CLISP + * Bruno Haible 1990-2005 + * Sam Steingold 1998-2005 + * Generic Streams: Marcus Daniels 8.4.1994 + * SCREEN package for Win32: Arseny Slobodjuck 2001-02-14 + * German comments translated into English: Stefan Kain 2001-11-02 + */ #include "lispbibl.c" #include "arilev0.c" # for R_sign Index: lispbibl.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/lispbibl.d,v retrieving revision 1.606 retrieving revision 1.607 diff -u -d -r1.606 -r1.607 --- lispbibl.d 25 Jan 2005 09:20:38 -0000 1.606 +++ lispbibl.d 25 Jan 2005 14:35:06 -0000 1.607 @@ -2,7 +2,7 @@ * Main include-file for CLISP * Bruno Haible 1990-2005 * Marcus Daniels 11.11.1994 - * Sam Steingold 1998-2004 + * Sam Steingold 1998-2005 * German comments translated into English: Stefan Kain 2001-09-24 Flags intended to be set through CFLAGS: Index: unixaux.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/unixaux.d,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- unixaux.d 11 Jan 2005 16:29:51 -0000 1.50 +++ unixaux.d 25 Jan 2005 14:34:58 -0000 1.51 @@ -1,7 +1,7 @@ /* * Auxiliary functions for CLISP on UNIX * Bruno Haible 1990-2004 - * Sam Steingold 1998-2004 + * Sam Steingold 1998-2005 */ #include "lispbibl.c" Index: foreign1.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/src/foreign1.lisp,v retrieving revision 1.78 retrieving revision 1.79 diff -u -d -r1.78 -r1.79 --- foreign1.lisp 24 Jan 2005 10:28:20 -0000 1.78 +++ foreign1.lisp 25 Jan 2005 14:35:09 -0000 1.79 @@ -1,6 +1,6 @@ ;;; Foreign function interface for CLISP ;;; Bruno Haible 19.2.1995 -;;; Sam Steingold 1998-2003 +;;; Sam Steingold 1998-2005 #+UNICODE (progn Index: lambdalist.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/src/lambdalist.lisp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- lambdalist.lisp 21 Jan 2005 11:46:02 -0000 1.10 +++ lambdalist.lisp 25 Jan 2005 14:35:07 -0000 1.11 @@ -1,6 +1,6 @@ ;;; Parsing ordinary lambda lists ;;; Bruno Haible 1988-2004 -;;; Sam Steingold 1999-2001 +;;; Sam Steingold 1999-2005 (in-package "SYSTEM") Index: inspect.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/src/inspect.lisp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- inspect.lisp 13 Jan 2005 17:15:00 -0000 1.25 +++ inspect.lisp 25 Jan 2005 14:35:09 -0000 1.26 @@ -1,6 +1,6 @@ ;;; Inspect ;;; -;;; Copyright (C) 2000 by Sam Steingold +;;; Copyright (C) 2000-2005 by Sam Steingold ;;; This is Free Software, covered by the GNU GPL (v2) ;;; See http://www.gnu.org/copyleft/gpl.html ;;; Index: socket.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/socket.d,v retrieving revision 1.88 retrieving revision 1.89 diff -u -d -r1.88 -r1.89 --- socket.d 24 Jan 2005 10:26:10 -0000 1.88 +++ socket.d 25 Jan 2005 14:35:06 -0000 1.89 @@ -2,7 +2,7 @@ * Setting up a connection to an X server, and other socket functions * Bruno Haible 19.6.1994, 27.6.1997, 9.3.1999 ... 2003 * Marcus Daniels 28.9.1995, 9.9.1997 - * Sam Steingold 1998-2002 + * Sam Steingold 1998-2005 * German comments translated into English: Stefan Kain 2002-09-11 */ Index: defstruct.lisp =================================================================== RCS file: /cvsroot/clisp/clisp/src/defstruct.lisp,v retrieving revision 1.69 retrieving revision 1.70 diff -u -d -r1.69 -r1.70 --- defstruct.lisp 21 Jan 2005 11:46:02 -0000 1.69 +++ defstruct.lisp 25 Jan 2005 14:35:11 -0000 1.70 @@ -1,6 +1,6 @@ ;;; Sources for CLISP DEFSTRUCT macro -;;; Bruno Haible 1988-2004 -;;; Sam Steingold 1998-2004 +;;; Bruno Haible 1988-2005 +;;; Sam Steingold 1998-2005 ;;; German comments translated into English: Stefan Kain 2003-01-14 (in-package "SYSTEM") Index: constobj.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/constobj.d,v retrieving revision 1.167 retrieving revision 1.168 diff -u -d -r1.167 -r1.168 --- constobj.d 21 Jan 2005 13:34:14 -0000 1.167 +++ constobj.d 25 Jan 2005 14:35:12 -0000 1.168 @@ -1,7 +1,7 @@ /* * list of all objects known to the C-program ("program-constants") * Bruno Haible 1990-2005 - * Sam Steingold 1998-2004 + * Sam Steingold 1998-2005 * German comments translated into English: Stefan Kain 2002-02-20 The symbols are already treated specially in CONSTSYM. Index: constsym.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/constsym.d,v retrieving revision 1.290 retrieving revision 1.291 diff -u -d -r1.290 -r1.291 --- constsym.d 12 Jan 2005 19:52:51 -0000 1.290 +++ constsym.d 25 Jan 2005 14:35:12 -0000 1.291 @@ -1,7 +1,7 @@ /* * List of all symbols known to the C-program ("program constants") * Bruno Haible 1990-2005 - * Sam Steingold 1998-2004 + * Sam Steingold 1998-2005 */ /* The macro LISPSYM declares a LISP symbol. Index: genclisph.d =================================================================== RCS file: /cvsroot/clisp/clisp/src/genclisph.d,v retrieving revision 1.166 retrieving revision 1.167 diff -u -d -r1.166 -r1.167 --- genclisph.d 11 Jan 2005 16:38:44 -0000 1.166 +++ genclisph.d 25 Jan 2005 14:35:09 -0000 1.167 @@ -1,7 +1,7 @@ /* * Export CLISP internals for modules * Bruno Haible 1994-2004 - * Sam Steingold 1998-2004 + * Sam Steingold 1998-2005 */ #include "lispbibl.c" --__--__-- _______________________________________________ clisp-cvs mailing list cli...@li... https://lists.sourceforge.net/lists/listinfo/clisp-cvs End of clisp-cvs Digest |