From 6878e597c4412e5b5ca2539ed74ddd2455576f50 Mon Sep 17 00:00:00 2001 From: drbrain Date: Wed, 18 Apr 2012 23:59:22 +0000 Subject: * ext/curses/curses.c (window_nodelay): Fixed call-seq of nodelay to include the '='. Improved description window.nodelay=. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35392 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ ext/curses/curses.c | 9 ++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) 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 -- cgit v1.2.3