summaryrefslogtreecommitdiff
path: root/cad/gwave/files/patch-src_rgeval.c
diff options
context:
space:
mode:
authorStanislav Sedov <stas@FreeBSD.org>2009-06-09 11:16:58 +0000
committerStanislav Sedov <stas@FreeBSD.org>2009-06-09 11:16:58 +0000
commit40acafa07e10c7798c3bfe59ad3c0d5844e77fc0 (patch)
tree5b289106fe1afce9089802a2830c0a98e8096dc6 /cad/gwave/files/patch-src_rgeval.c
parent- Update to 2.36 (diff)
- Update to 20080127.
Notes
Notes: svn path=/head/; revision=235486
Diffstat (limited to 'cad/gwave/files/patch-src_rgeval.c')
-rw-r--r--cad/gwave/files/patch-src_rgeval.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/cad/gwave/files/patch-src_rgeval.c b/cad/gwave/files/patch-src_rgeval.c
deleted file mode 100644
index bf337962a4ff..000000000000
--- a/cad/gwave/files/patch-src_rgeval.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/rgeval.c.orig 2008-03-02 16:15:23.000000000 -0500
-+++ src/rgeval.c 2008-03-02 16:16:35.000000000 -0500
-@@ -26,7 +26,6 @@ remote_guile_eval(char *req, char **outp
- unsigned char *ret, *output, *error;
- int rlen, olen, elen;
- SCM o_port, e_port;
-- SCM saved_def_e_port;
-
- /* Temporarily redirect output and error to string ports.
- Note that the port setting functions return the current previous
-@@ -34,10 +33,6 @@ remote_guile_eval(char *req, char **outp
- o_port = scm_set_current_output_port(make_output_strport(FUNC_NAME));
- e_port = scm_set_current_error_port(make_output_strport(FUNC_NAME));
-
-- /* Workaround for a problem with older Guiles */
-- saved_def_e_port = scm_def_errp;
-- scm_def_errp = scm_current_error_port();
--
- /* Evaluate the request expression and free it. */
- val = scwm_safe_eval_str((char *) req);
-
-@@ -48,7 +43,6 @@ remote_guile_eval(char *req, char **outp
- below for getting the strings back */
- o_port = scm_set_current_output_port(o_port);
- e_port = scm_set_current_error_port(e_port);
-- scm_def_errp = saved_def_e_port;
-
- /* Retrieve output and errors */
- if(outp) {