changeset 7909:7ba62ea0f161

Fix seg-fault for dbstep at end of function
author David Bateman <dbateman@free.fr>
date Wed, 09 Jul 2008 18:09:51 +0200
parents 47a18b8c9000
children b2f212b51488
files src/ChangeLog src/pt-id.cc
diffstat 2 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Wed Jul 09 12:07:17 2008 -0400
+++ b/src/ChangeLog	Wed Jul 09 18:09:51 2008 +0200
@@ -29,6 +29,12 @@
 	* toplev.cc (main_loop): Unwind-protect global_command.
 	* input.cc (get_debug_input): Likewise.
 
+2008-07-09  David Bateman  <dbateman@free.fr>
+
+	* pt-id.cc (octave_value_list tree_identifier::rvalue (int), 
+	octave_lvalue tree_identifier::lvalue (void)): Remove 
+	MAYBE_DO_BREAKPOINT.
+
 2008-07-08  John W. Eaton  <jwe@octave.org>
 
 	* graphics.h.in (axes::properties::keypos): Declare as
--- a/src/pt-id.cc	Wed Jul 09 12:07:17 2008 -0400
+++ b/src/pt-id.cc	Wed Jul 09 18:09:51 2008 +0200
@@ -57,8 +57,6 @@
 {
   octave_value_list retval;
 
-  MAYBE_DO_BREAKPOINT;
-
   if (error_state)
     return retval;
 
@@ -117,8 +115,6 @@
 octave_lvalue
 tree_identifier::lvalue (void)
 {
-  MAYBE_DO_BREAKPOINT;
-
   return octave_lvalue (&(xsym().varref ()));
 }