diff --git a/ChangeLog b/ChangeLog index 31a2ed6958..2d066b043b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Thu Apr 19 08:59:02 2012 Eric Hodel + + * ext/curses/curses.c (window_nodelay): Fixed call-seq of nodelay to + include the '='. + + Improved description window.nodelay=. + Thu Apr 19 08:47:54 2012 Eric Hodel * io.c (io_readpartial): Document the output buffer parameter is diff --git a/ext/curses/curses.c b/ext/curses/curses.c index 132c7e96df..1dcf5e9471 100644 --- a/ext/curses/curses.c +++ b/ext/curses/curses.c @@ -2439,11 +2439,14 @@ window_keypad(VALUE obj, VALUE val) #ifdef HAVE_NODELAY /* * Document-method: Curses::Window.nodelay - * call-seq: nodelay(bool) + * call-seq: + * window.nodelay = bool * - * Causes Curses::Window.getch to be a non-blocking call. If no input is ready, getch returns ERR. + * When in no-delay mode Curses::Window#getch is a non-blocking call. If no + * input is ready #getch returns ERR. * - * If disabled (+bool+ is +false+), Curses::Window.getch waits until a key is pressed. + * When in delay mode (+bool+ is +false+ which is the default), + * Curses::Window#getch blocks until a key is pressed. * */ static VALUE