Closed destroyhimmyrobots closed 8 years ago
System Details:
The documentation for the function open-network-stream called by by monroe-connect states:
open-network-stream
monroe-connect
SERVICE is the name of the service desired, or an integer specifying a port number to connect to.
Because monroe-connect passes a string to the SERVICE parameter of open-network-stream, the following error is thrown:
Unknown service: 7888
One can correct this by passing an integer port number to open-network-stream. Here's a quick hack to demonstrate working arguments:
(advice-add #'open-network-stream :filter-args (lambda (r) (setf (elt r 3) (string-to-int (elt r 3))) r))
Thanks for catching it!
Can you please try changes I pushed in fd742ee?
LGTM! Thank you for the swift patch.
System Details:
The documentation for the function
open-network-stream
called by bymonroe-connect
states:Because
monroe-connect
passes a string to the SERVICE parameter ofopen-network-stream
, the following error is thrown:One can correct this by passing an integer port number to
open-network-stream
. Here's a quick hack to demonstrate working arguments: