# HG changeset patch # User Rik # Date 1390595313 28800 # Node ID e33f706468bc8648aa4f3fda0383f9e92f5878dd # Parent 12eb4eb90486e646da1908648f3be97ccde8c66e Fix extra space in dbwhere output. * debug.cc (Fdbwhere): Remove extra space between "at" and "line". diff -r 12eb4eb90486 -r e33f706468bc libinterp/corefcn/debug.cc --- 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 << " " << std::endl; + octave_stdout << "" << std::endl; } else error ("dbwhere: must be inside a user function to use dbwhere\n");