changeset 18375:e33f706468bc

Fix extra space in dbwhere output. * debug.cc (Fdbwhere): Remove extra space between "at" and "line".
author Rik <rik@octave.org>
date Fri, 24 Jan 2014 12:28:33 -0800
parents 12eb4eb90486
children bb162f81881d
files libinterp/corefcn/debug.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/debug.cc	Fri Jan 24 12:20:47 2014 -0800
+++ b/libinterp/corefcn/debug.cc	Fri Jan 24 12:28:33 2014 -0800
@@ -844,7 +844,7 @@
 
       if (l > 0)
         {
-          octave_stdout << " line " << l << std::endl;
+          octave_stdout << "line " << l << std::endl;
 
           if (have_file)
             {
@@ -855,7 +855,7 @@
             }
         }
       else
-        octave_stdout << " <unknown line>" << std::endl;
+        octave_stdout << "<unknown line>" << std::endl;
     }
   else
     error ("dbwhere: must be inside a user function to use dbwhere\n");