зеркало из https://github.com/github/ruby.git
bug fix for getnstr() and wgetnstr()
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1865 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
23303b8a63
Коммит
be020d6c05
|
@ -396,7 +396,7 @@ curses_getstr(obj)
|
|||
char rtn[1024]; /* This should be big enough.. I hope */
|
||||
|
||||
rb_read_check(stdin);
|
||||
#ifdef GETNSTR
|
||||
#if defined(HAVE_GETNSTR)
|
||||
getnstr(rtn,1023);
|
||||
#else
|
||||
getstr(rtn);
|
||||
|
@ -1024,7 +1024,7 @@ window_getstr(obj)
|
|||
|
||||
GetWINDOW(obj, winp);
|
||||
rb_read_check(stdin);
|
||||
#ifdef WGETNSTR
|
||||
#if defined(HAVE_WGETNSTR)
|
||||
wgetnstr(winp->window, rtn, 1023);
|
||||
#else
|
||||
wgetstr(winp->window, rtn);
|
||||
|
|
Загрузка…
Ссылка в новой задаче