Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/ps/ps-document.c
diff options
context:
space:
mode:
Diffstat (limited to 'ps/ps-document.c')
-rw-r--r--ps/ps-document.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/ps/ps-document.c b/ps/ps-document.c
index b57c96a..8684f4d 100644
--- a/ps/ps-document.c
+++ b/ps/ps-document.c
@@ -233,13 +233,6 @@ interpreter_failed (PSDocument *gs, char *msg)
stop_interpreter (gs);
}
-static void
-interpreter_message (PSDocument *gs, char *msg)
-{
- /* FIXME maybe we should display a dialog */
- g_print (msg);
-}
-
static gboolean
ps_document_widget_event (GtkWidget *widget, GdkEvent *event, gpointer data)
{
@@ -524,7 +517,7 @@ is_interpreter_ready (PSDocument *gs)
static void
output(gpointer data, gint source, GdkInputCondition condition)
{
- char buf[MAX_BUFSIZE + 1], *msg;
+ char buf[MAX_BUFSIZE + 1];
guint bytes = 0;
PSDocument *gs = PS_DOCUMENT(data);
@@ -564,8 +557,7 @@ output(gpointer data, gint source, GdkInputCondition condition)
}
if(bytes > 0) {
buf[bytes] = '\0';
- msg = g_strdup(buf);
- interpreter_message (gs, msg);
+ printf(buf);
}
}