From: <cli...@li...> - 2005-01-29 04:13:26
|
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/modules/regexp regexp.xml,1.20,1.21 (Sam Steingold) 2. clisp/src makemake.in,1.509,1.510 ChangeLog,1.4168,1.4169 (Bruno Haible) 3. clisp/src TODO,1.59,1.60 (Bruno Haible) --__--__-- Message: 1 From: Sam Steingold <sd...@us...> To: cli...@li... Subject: clisp/modules/regexp regexp.xml,1.20,1.21 Date: Fri, 28 Jan 2005 16:05:41 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/modules/regexp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12919/modules/regexp Modified Files: regexp.xml Log Message: label the "regexp" module section with "regexp-mod" to avoid a conflict with the regular expression format spec from texinfo Index: regexp.xml =================================================================== RCS file: /cvsroot/clisp/clisp/modules/regexp/regexp.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- regexp.xml 12 Jan 2005 16:52:28 -0000 1.20 +++ regexp.xml 28 Jan 2005 16:05:39 -0000 1.21 @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<section id="regexp"><title>&clisp; ®exp-pac; module</title> +<section id="regexp-mod"><title>&clisp; ®exp-pac; module</title> <para>The ®exp-pac; module implements the <ulink url="regexp.html">POSIX regular expressions</ulink> --__--__-- Message: 2 From: Bruno Haible <ha...@us...> To: cli...@li... Subject: clisp/src makemake.in,1.509,1.510 ChangeLog,1.4168,1.4169 Date: Fri, 28 Jan 2005 17:22:51 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1367 Modified Files: makemake.in ChangeLog Log Message: Make the check-fresh-line test pass also on mingw. Index: makemake.in =================================================================== RCS file: /cvsroot/clisp/clisp/src/makemake.in,v retrieving revision 1.509 retrieving revision 1.510 diff -u -d -r1.509 -r1.510 --- makemake.in 28 Jan 2005 14:00:25 -0000 1.509 +++ makemake.in 28 Jan 2005 17:22:41 -0000 1.510 @@ -3093,15 +3093,27 @@ # Check that fresh-line works, when clisp is used in batch mode (option -x) # and when the stdout and stderr are the same (2>&1), even when this output # is a pipe. + # On win32, this test fails, and we cannot fix it, because given two pipe + # handle for stdout and stderr, we cannot determine equality. Instead test + # only the (easier) case of stdout and stderr going to a file. echol "check-fresh-line : lisp${LEXE} lispinit.mem" OBSOLETE="$OBSOLETE fresh-line.out" echotab "-\$(RM) fresh-line.out" - echotab "\$(RUN) -q -M lispinit.mem -x '(progn (dolist (s (quote (*terminal-io* *standard-output* *error-output* *query-io* *debug-io* *trace-output*))) (format t \"~S = ~S~%\" s (symbol-value s))) (values))' 2>&1 | cat > fresh-line.out" - for stream1 in '*terminal-io*' '*standard-output*' '*error-output*' '*query-io*' '*debug-io*' '*trace-output*'; do - for stream2 in '*terminal-io*' '*standard-output*' '*error-output*' '*query-io*' '*debug-io*' '*trace-output*'; do - echotab "\$(RUN) -q -M lispinit.mem -x '(progn (format ${stream1} \"~&Line1 to ${stream1}\") (format ${stream2} \"~&Line2 to ${stream2}\") (values))' 2>&1 | cat >> fresh-line.out" + if [ "$HOS" = win32 ] || [ "$HSYS" = win32gcc ] ; then + echotab "\$(RUN) -q -M lispinit.mem -x '(progn (dolist (s (quote (*terminal-io* *standard-output* *error-output* *query-io* *debug-io* *trace-output*))) (format t \"~S = ~S~%\" s (symbol-value s))) (values))' 2>&1 > fresh-line.out" + for stream1 in '*terminal-io*' '*standard-output*' '*error-output*' '*query-io*' '*debug-io*' '*trace-output*'; do + for stream2 in '*terminal-io*' '*standard-output*' '*error-output*' '*query-io*' '*debug-io*' '*trace-output*'; do + echotab "\$(RUN) -q -M lispinit.mem -x '(progn (format ${stream1} \"~&Line1 to ${stream1}\") (format ${stream2} \"~&Line2 to ${stream2}\") (values))' 2>&1 >> fresh-line.out" + done done - done + else + echotab "\$(RUN) -q -M lispinit.mem -x '(progn (dolist (s (quote (*terminal-io* *standard-output* *error-output* *query-io* *debug-io* *trace-output*))) (format t \"~S = ~S~%\" s (symbol-value s))) (values))' 2>&1 | cat > fresh-line.out" + for stream1 in '*terminal-io*' '*standard-output*' '*error-output*' '*query-io*' '*debug-io*' '*trace-output*'; do + for stream2 in '*terminal-io*' '*standard-output*' '*error-output*' '*query-io*' '*debug-io*' '*trace-output*'; do + echotab "\$(RUN) -q -M lispinit.mem -x '(progn (format ${stream1} \"~&Line1 to ${stream1}\") (format ${stream2} \"~&Line2 to ${stream2}\") (values))' 2>&1 | cat >> fresh-line.out" + done + done + fi echotab "if grep 'Line1.*Line2' fresh-line.out > /dev/null; then exit 1; fi" echotab "\$(RM) fresh-line.out" echol Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.4168 retrieving revision 1.4169 diff -u -d -r1.4168 -r1.4169 --- ChangeLog 28 Jan 2005 15:55:04 -0000 1.4168 +++ ChangeLog 28 Jan 2005 17:22:43 -0000 1.4169 @@ -1,3 +1,8 @@ +2005-01-28 Bruno Haible <br...@cl...> + + * makemake.in (check-fresh-line): Reduce the scope of the test on + Woe32. + 2005-01-23 Bruno Haible <br...@cl...> * clos-methcomb2.lisp (build-effective-method-function-form): Don't --__--__-- Message: 3 From: Bruno Haible <ha...@us...> To: cli...@li... Subject: clisp/src TODO,1.59,1.60 Date: Fri, 28 Jan 2005 17:40:42 +0000 Reply-To: cli...@li... Update of /cvsroot/clisp/clisp/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6751 Modified Files: TODO Log Message: A bug discovered by Christophe Rhodes. Index: TODO =================================================================== RCS file: /cvsroot/clisp/clisp/src/TODO,v retrieving revision 1.59 retrieving revision 1.60 diff -u -d -r1.59 -r1.60 --- TODO 21 Jan 2005 17:35:59 -0000 1.59 +++ TODO 28 Jan 2005 17:40:39 -0000 1.60 @@ -83,6 +83,9 @@ check-redefinition +(format nil "~G" 1d23) => "099999999999999990000000.0 " + + Cannot remove symbolic links to directories with either DELETE-FILE or DELETE-DIR. <http://article.gmane.org/gmane.lisp.clisp.devel:13452> --__--__-- _______________________________________________ clisp-cvs mailing list cli...@li... https://lists.sourceforge.net/lists/listinfo/clisp-cvs End of clisp-cvs Digest |