Remove unused words. Fixes #132.

db4
John Benediktsson 2011-10-19 10:28:45 -07:00
parent 8baf015580
commit fb2aab3545
4 changed files with 3 additions and 19 deletions

View File

@ -271,10 +271,6 @@ M: object (client) ( remote -- client-in client-out local )
TUPLE: server-port < port addr encoding ;
: check-server-port ( port -- port )
dup check-disposed
dup server-port? [ "Not a server port" throw ] unless ; inline
GENERIC: (server) ( addrspec -- handle )
GENERIC: (accept) ( server addrspec -- handle sockaddr )

View File

@ -49,7 +49,6 @@ GENERIC: v*high ( u v -- w )
<PRIVATE
: (h+) ( u -- w ) 2 <groups> [ first2 + ] map ;
: (h-) ( u -- w ) 2 <groups> [ first2 - ] map ;
PRIVATE>
GENERIC: v*hs+ ( u v -- w )

View File

@ -79,15 +79,6 @@ ERROR: bad-email-address email ;
: data ( -- )
"DATA" command ;
ERROR: message-contains-dot message ;
M: message-contains-dot summary ( obj -- string )
drop "Message cannot contain . on a line by itself" ;
: validate-message ( msg -- msg' )
"." over member?
[ message-contains-dot ] when ;
: send-body ( email -- )
binary encode-output
[ body>> ] [ encoding>> ] bi encode >base64-lines write

View File

@ -167,8 +167,6 @@ CONSTANT: [start]
stop
]
: no-runnable-threads ( -- ) die ;
GENERIC: (next) ( obj thread -- obj' )
M: thread (next)