From: ueno Date: Tue, 22 Mar 2005 10:05:03 +0000 (+0000) Subject: Fixed. X-Git-Tag: channel-coding-mergepoint~26 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=7d417f4698b3499f970ae04e81d83dc2b72f6dbc;p=elisp%2Friece.git Fixed. --- diff --git a/lisp/rubyserv.rb b/lisp/rubyserv.rb index 032adfc..7c894fc 100644 --- a/lisp/rubyserv.rb +++ b/lisp/rubyserv.rb @@ -1,4 +1,5 @@ -# A simple IPC server for executing arbitrary Ruby program. +# A simple IPC server executing arbitrary Ruby program. + # The protocol is based on Assuan protocol of GnuPG. # http://www.gnupg.org/(en)/related_software/libassuan/index.html @@ -59,12 +60,11 @@ class RubyServ def dispatch_eval(c, r) r = deq_data if r.empty? - p r open('|-') do |f| if f d = f.read Process.wait - send_data(d) + send_data(d) if d if $?.success? puts("OK\r\n") else