comparison lib-src/etags.c @ 14230:6b836f84bccf

(enum sym_type, anonymous enum): Delete final comma.
author Karl Heuer <kwzh@gnu.org>
date Fri, 19 Jan 1996 22:54:17 +0000
parents ee40177f6c68
children efa1bc6b7b17
comparison
equal deleted inserted replaced
14229:d9ef2de9c722 14230:6b836f84bccf
1471 * The C symbol tables. 1471 * The C symbol tables.
1472 */ 1472 */
1473 enum sym_type 1473 enum sym_type
1474 { 1474 {
1475 st_none, st_C_objprot, st_C_objimpl, st_C_objend, st_C_gnumacro, 1475 st_none, st_C_objprot, st_C_objimpl, st_C_objend, st_C_gnumacro,
1476 st_C_struct, st_C_enum, st_C_define, st_C_typedef, st_C_typespec, 1476 st_C_struct, st_C_enum, st_C_define, st_C_typedef, st_C_typespec
1477 }; 1477 };
1478 1478
1479 /* Feed stuff between (but not including) %[ and %] lines to: 1479 /* Feed stuff between (but not including) %[ and %] lines to:
1480 gperf -c -k1,3 -o -p -r -t 1480 gperf -c -k1,3 -o -p -r -t
1481 %[ 1481 %[
1718 oinbody, /* in @implementation body */ 1718 oinbody, /* in @implementation body */
1719 omethodsign, /* in @implementation body, after +/- */ 1719 omethodsign, /* in @implementation body, after +/- */
1720 omethodtag, /* after method name */ 1720 omethodtag, /* after method name */
1721 omethodcolon, /* after method colon */ 1721 omethodcolon, /* after method colon */
1722 omethodparm, /* after method parameter */ 1722 omethodparm, /* after method parameter */
1723 oignore, /* wait for @end */ 1723 oignore /* wait for @end */
1724 } objdef; 1724 } objdef;
1725 1725
1726 /* 1726 /*
1727 * Set this to TRUE, and the next token considered is called a function. 1727 * Set this to TRUE, and the next token considered is called a function.
1728 * Used only for GNU emacs's function-defining macros. 1728 * Used only for GNU emacs's function-defining macros.