소스 검색

- Comment out unused tokenstring function

daniel 21 년 전
부모
커밋
ce11762359
1개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. 7 3
      compiler/pbase.pas

+ 7 - 3
compiler/pbase.pas

@@ -65,7 +65,7 @@ interface
 
     procedure identifier_not_found(const s:string);
 
-    function tokenstring(i : ttoken):string;
+{    function tokenstring(i : ttoken):string;}
 
     { consumes token i, if the current token is unequal i }
     { a syntax error is written                           }
@@ -116,11 +116,12 @@ implementation
        end;
 
 
+{ Unused:
     function tokenstring(i : ttoken):string;
       begin
         tokenstring:=tokeninfo^[i].str;
       end;
-
+}
 
     { consumes token i, write error if token is different }
     procedure consume(i : ttoken);
@@ -270,7 +271,10 @@ implementation
 end.
 {
   $Log$
-  Revision 1.26  2004-01-22 17:24:49  peter
+  Revision 1.27  2004-02-21 20:10:27  daniel
+    - Comment out unused tokenstring function
+
+  Revision 1.26  2004/01/22 17:24:49  peter
     * except is also an end of block token
     * after a label don't try to parse a statement when the next token
       is an end token