]> git.sur5r.net Git - cc65/commitdiff
Fixed a few comments
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 17 Mar 2003 10:19:53 +0000 (10:19 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 17 Mar 2003 10:19:53 +0000 (10:19 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2028 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/pseudo.c
src/ca65/symtab.c
src/ca65/symtab.h

index 0c168a1d9cf59938ae9fdcf54393ceb9190aa3b5..498b0824a599589607665d4da23b3823be10f95f 100644 (file)
@@ -605,9 +605,9 @@ static void DoEnd (void)
 
 static void DoEndProc (void)
 /* Leave a lexical level */
-{           
+{
     if (!SymIsLocalLevel ()) {
-        /* No local symbol table level open */
+        /* No local scope */
         ErrorSkip (ERR_NO_OPEN_PROC);
     } else {
         SymLeaveLevel ();
index d5087ebf9c0dd6d4c34dcbd73b56789d500b397b..bd275c0d6b4cc3dbc27b54103941dcdd0d19a667 100644 (file)
@@ -379,14 +379,14 @@ void SymEnterLevel (void)
 
 void SymLeaveLevel (void)
 /* Leave the current lexical level */
-{                          
+{
     SymTab = SymTab->BackLink;
 }
 
 
 
 int SymIsLocalLevel (void)
-/* Return true if we ae on a local symbol table level. */
+/* Return true if we are on a local symbol table level. */
 {
     return (SymTab != RootTab);
 }
index 4492889b5bc4af5043351d63b696f6899500a52b..71cc42977f50436960875989b43e4b307f3e9ef4 100644 (file)
@@ -74,7 +74,7 @@ void SymLeaveLevel (void);
 /* Leave the current lexical level */
 
 int SymIsLocalLevel (void);
-/* Return true if we ae on a local symbol table level. */
+/* Return true if we are on a local symbol table level. */
 
 void SymDef (const char* Name, ExprNode* Expr, int ZP, int Label);
 /* Define a new symbol */