bool -> ?

db4
Doug Coleman 2008-12-11 18:52:22 -06:00
parent 7f3b946264
commit 3dc417ae64
3 changed files with 4 additions and 4 deletions

View File

@ -166,7 +166,7 @@ ERROR: sqlite-sql-error < sql-error n string ;
: sqlite-row ( handle -- seq )
dup sqlite-#columns [ sqlite-column ] with map ;
: sqlite-step-has-more-rows? ( prepared -- bool )
: sqlite-step-has-more-rows? ( prepared -- ? )
{
{ SQLITE_ROW [ t ] }
{ SQLITE_DONE [ f ] }

View File

@ -102,7 +102,7 @@ M: message-contains-dot summary ( obj -- string )
LOG: smtp-response DEBUG
: multiline? ( response -- boolean )
: multiline? ( response -- ? )
3 swap ?nth CHAR: - = ;
: (receive-response) ( -- )

View File

@ -170,10 +170,10 @@ SYMBOLS: msg-obj class-name-ptr mouse-captured ;
{ 27 "ESC" }
} ;
: exclude-key-wm-keydown? ( n -- bool )
: exclude-key-wm-keydown? ( n -- ? )
exclude-keys-wm-keydown key? ;
: exclude-key-wm-char? ( n -- bool )
: exclude-key-wm-char? ( n -- ? )
exclude-keys-wm-char key? ;
: keystroke>gesture ( n -- mods sym )