gcl-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Gcl-devel] windows read patch


From: Vadim V. Zhytnikov
Subject: Re: [Gcl-devel] windows read patch
Date: Wed, 16 May 2007 20:39:53 +0300
User-agent: Thunderbird 1.5.0.10 (Windows/20070221)

Camm Maguire writes:
Greetings!

Great!  Fantastic!  2.6.8 here we come.

Here is how to test read-char-no-hang:

(defun test-it ()
        (unread-char (read-char))
        (list (read-char-no-hang)
              (read-char-no-hang)
              (read-char-no-hang)))

TEST-IT

(test-it)
a

(#\a NIL NIL)


Please let me know if you get this on mingw.

I'm committing the patch now on both branches.

Any other windows issues on 2.6.8pre you know of?


Please don't hurry to release 2.6.8 officially.
Unfortunately this test on Windows returns (NIL NIL NIL)
instantly without waiting for further input:

(test-it)
(NIL NIL NIL)
(test-it)123
(NIL NIL NIL)

123


And result is the same in mingw console
(kind of rxvt port) and Windows console (cmd.exe).
On the other hand in mingw console

(list(read-char)(read-char)(read-char))123456
(#\1 #\2 #\3)

456

while in cmd.exe

(list(read-char)(read-char)(read-char))123456
(#\Return #\Newline #\1)

23456

In any case I'd like to have a chance to test
final 2.6.8 but before official release with Maxima
on both Linux and Windows.


--
     Vadim V. Zhytnikov

      <address@hidden>
     <address@hidden>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]