Changeset 2bb771 in git
- Timestamp:
- Sep 22, 1999, 5:12:15 PM (24 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 3b295e0e5a724fbea605a4927fdcc6ed70b0b3e9
- Parents:
- 560432aa8601a1f4136751b1d867f6c21d03d06e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iplib.cc
r560432 r2bb771 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iplib.cc,v 1.6 3 1999-09-22 14:58:36 obachmanExp $ */4 /* $Id: iplib.cc,v 1.64 1999-09-22 15:12:15 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: interpreter: LIB and help … … 790 790 static void iiCleanProcs(idhdl &root) 791 791 { 792 idhdl prev=NULL; 792 793 loop 793 794 { … … 802 803 // - no proc body can start at the beginning of the file 803 804 killhdl(root); 805 if (prev==NULL) 806 root=idroot; 807 else 808 { 809 root=prev; 810 prev=NULL; 811 } 812 continue; 804 813 } 805 continue;806 }814 } 815 prev=root; 807 816 root=IDNEXT(root); 808 817 } … … 844 853 reinit_yylp(); 845 854 fclose( yylpin ); 846 #if def HAVE_NAMESPACES855 #ifndef HAVE_NAMESPACES 847 856 iiCleanProcs(idroot); 848 857 #endif /* HAVE_NAMESPACES */
Note: See TracChangeset
for help on using the changeset viewer.