Changeset 4073 for trunk/lib-src/etags.c
- Timestamp:
- 05/03/06 18:37:43 (3 years ago)
- Files:
-
- trunk (modified) (1 prop)
- trunk/lib-src/etags.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk
- Property svn:ignore changed from
bin
to
bin
site-lisp
- Property svn:ignore changed from
trunk/lib-src/etags.c
r4037 r4073 42 42 */ 43 43 44 char pot_etags_version[] = "@(#) pot revision number is 17.1 5";44 char pot_etags_version[] = "@(#) pot revision number is 17.17"; 45 45 46 46 #define TRUE 1 … … 4544 4544 } 4545 4545 } 4546 free (package); 4546 4547 } 4547 4548 … … 5442 5443 } 5443 5444 } 5445 if (last != NULL) 5446 free (last); 5444 5447 } 5445 5448 … … 5598 5601 { 5599 5602 erlang_attribute (cp); 5600 last = NULL; 5603 if (last != NULL) 5604 { 5605 free (last); 5606 last = NULL; 5607 } 5601 5608 } 5602 5609 else if ((len = erlang_func (cp, last)) > 0) … … 5615 5622 } 5616 5623 } 5624 if (last != NULL) 5625 free (last); 5617 5626 } 5618 5627 … … 6888 6897 /* 6889 6898 * Local Variables: 6890 * c-indentation-style: gnu6891 6899 * indent-tabs-mode: t 6892 6900 * tab-width: 8
