summaryrefslogtreecommitdiffhomepage
path: root/mixlib/xmix_vm_handlers.c
diff options
context:
space:
mode:
Diffstat (limited to 'mixlib/xmix_vm_handlers.c')
-rw-r--r--mixlib/xmix_vm_handlers.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mixlib/xmix_vm_handlers.c b/mixlib/xmix_vm_handlers.c
index 02c7ca9..2938bfc 100644
--- a/mixlib/xmix_vm_handlers.c
+++ b/mixlib/xmix_vm_handlers.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- xmix_vm_handlers.c :
* Implementation of the functions declared in xmix_vm_handlers.h
* ------------------------------------------------------------------
- * $Id: xmix_vm_handlers.c,v 1.3 2001/09/12 23:14:24 jao Exp $
+ * $Id: xmix_vm_handlers.c,v 1.4 2001/09/17 23:26:43 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001 Free Software Foundation, Inc.
*
@@ -1345,11 +1345,11 @@ cmd_pline_ (mix_vm_cmd_dispatcher_t *dis, const gchar *arg)
if (line == 0)
txt = "No such line (debug info not available)\n";
else
- txt = mix_vm_cmd_dispatcher_get_src_file_line (dis, line, TRUE);
+ txt = mix_vm_cmd_dispatcher_get_src_file_line (dis, line, FALSE);
if (txt == NULL || strlen (txt) == 0) txt = "No such line\n";
- fprintf (dis->out, "Line %ld: %s", line, txt);
+ fprintf (dis->out, "Line %ld: %s\n", line, txt);
return TRUE;
}