diff src/symtab.h @ 2846:52e7c4509983

[project @ 1997-03-26 23:27:35 by jwe]
author jwe
date Wed, 26 Mar 1997 23:29:12 +0000
parents ef422e6f6138
children 8b262e771614
line wrap: on
line diff
--- a/src/symtab.h	Wed Mar 26 23:05:15 1997 +0000
+++ b/src/symtab.h	Wed Mar 26 23:29:12 1997 +0000
@@ -180,6 +180,9 @@
   void mark_as_linked_to_global (void);
   int is_linked_to_global (void) const;
 
+  void mark_as_static (void);
+  int is_static (void) const;
+
   octave_value variable_value (void) const;
   octave_value& variable_reference (void);
 
@@ -194,6 +197,7 @@
 
   unsigned formal_param : 1;
   unsigned linked_to_global : 1;
+  unsigned tagged_static : 1;
 
   string nm;
   sv_Function sv_fcn;