diff src/pt-exp.cc @ 2979:a3556d2adec9

[project @ 1997-05-15 22:35:37 by jwe]
author jwe
date Thu, 15 May 1997 22:36:40 +0000
parents 49de01238638
children cd5ad3fd8049
line wrap: on
line diff
--- a/src/pt-exp.cc
+++ b/src/pt-exp.cc
@@ -37,7 +37,7 @@
 #include "help.h"
 #include "input.h"
 #include "oct-obj.h"
-#include "oct-var-ref.h"
+#include "oct-lvalue.h"
 #include "pager.h"
 #include "ov.h"
 #include "pt-exp.h"
@@ -105,7 +105,7 @@
 	}
       else if (etype == increment || etype == decrement)
 	{
-	  octave_variable_reference ref = op->lvalue ();
+	  octave_lvalue ref = op->lvalue ();
 
 	  if (! error_state)
 	    {
@@ -220,7 +220,7 @@
 	}
       else if (etype == increment || etype == decrement)
 	{
-	  octave_variable_reference ref = op->lvalue ();
+	  octave_lvalue ref = op->lvalue ();
 
 	  if (! error_state)
 	    {
@@ -519,7 +519,7 @@
 	    }
 	  else
 	    {
-	      octave_variable_reference ult = lhs->lvalue ();
+	      octave_lvalue ult = lhs->lvalue ();
 
 	      if (error_state)
 		eval_error ();
@@ -789,10 +789,10 @@
   return retval;
 }
 
-octave_variable_reference
+octave_lvalue
 tree_index_expression::lvalue (void)
 {
-  octave_variable_reference retval;
+  octave_lvalue retval;
 
   if (! error_state)
     {
@@ -898,7 +898,7 @@
 
 		  if (lhs_elt)
 		    {
-		      octave_variable_reference ult = lhs_elt->lvalue ();
+		      octave_lvalue ult = lhs_elt->lvalue ();
 
 		      if (error_state)
 			eval_error ();