comparison src/variables.cc @ 2898:8303749672be

[project @ 1997-04-28 20:50:36 by jwe]
author jwe
date Mon, 28 Apr 1997 20:50:37 +0000
parents f1c5f8151397
children 5ed088015839
comparison
equal deleted inserted replaced
2897:64ff56723e75 2898:8303749672be
78 #include "oct-obj.h" 78 #include "oct-obj.h"
79 #include "pt-exp.h" 79 #include "pt-exp.h"
80 #include "pt-id.h" 80 #include "pt-id.h"
81 #include "pt-indir.h" 81 #include "pt-indir.h"
82 #include "pt-mat.h" 82 #include "pt-mat.h"
83 #include "pt-misc.h"
83 #include "pt-plot.h" 84 #include "pt-plot.h"
84 #include "pr-output.h" 85 #include "pr-output.h"
85 #include "syscalls.h" 86 #include "syscalls.h"
86 #include "toplev.h" 87 #include "toplev.h"
87 #include "unwind-prot.h" 88 #include "unwind-prot.h"
298 299
299 if (! error_state) 300 if (! error_state)
300 { 301 {
301 int parse_status; 302 int parse_status;
302 303
303 eval_string (cmd, 0, parse_status); 304 eval_string (cmd, true, parse_status);
304 305
305 if (parse_status == 0) 306 if (parse_status == 0)
306 { 307 {
307 retval = is_valid_function (fname, warn_for, 0); 308 retval = is_valid_function (fname, warn_for, 0);
308 309
747 unwind_protect_int (reading_script_file); 748 unwind_protect_int (reading_script_file);
748 749
749 Vsaving_history = 0; 750 Vsaving_history = 0;
750 reading_script_file = 1; 751 reading_script_file = 1;
751 752
752 parse_and_execute (ffile, 1); 753 parse_and_execute (ffile);
753 754
754 script_file_executed = 1; 755 script_file_executed = 1;
755 } 756 }
756 } 757 }
757 758
1714 symbols_of_oct_usr_fcn (); 1715 symbols_of_oct_usr_fcn ();
1715 symbols_of_pager (); 1716 symbols_of_pager ();
1716 symbols_of_parse (); 1717 symbols_of_parse ();
1717 symbols_of_pr_output (); 1718 symbols_of_pr_output ();
1718 symbols_of_pt_mat (); 1719 symbols_of_pt_mat ();
1720 symbols_of_pt_misc ();
1719 symbols_of_pt_plot (); 1721 symbols_of_pt_plot ();
1720 symbols_of_syscalls (); 1722 symbols_of_syscalls ();
1721 symbols_of_toplev (); 1723 symbols_of_toplev ();
1722 symbols_of_value (); 1724 symbols_of_value ();
1723 symbols_of_variables (); 1725 symbols_of_variables ();