1 /* 2 Bugs item #556646, was opened at 2002-05-16 14:36 3 You can respond by visiting: 4 http://sourceforge.net/tracker/?func=detail&atid=106556&aid=556646&group_id=6556 5 6 Category: None 7 Group: None 8 Status: Open 9 Resolution: None 10 Priority: 5 11 Submitted By: Howard Wu (howardhbwu) 12 Assigned to: Nobody/Anonymous (nobody) 13 Summary: Some typedef can not be tagged in C code 14 15 Initial Comment: 16 My Ctags version: 5.2.3 17 */ 18 typedef enum{ 19 INDX_NIL = 0x00, 20 INDX_P, 21 INDX_S, 22 INDX_M, 23 INDX_S1, 24 INDX_S2, 25 INDX_S3, 26 INDX_C1, 27 INDX_C2, 28 INDX_S4, 29 INDX_T, 30 INDX_L, 31 INDX_R, 32 INDX_R2, 33 INDX_IM1, 34 INDX_IM2, 35 INDX_L2, 36 INDX_T2, 37 A = INDX_T2 38 } task_indx_type; 39 40 /* 41 "task_indx_type" can not be tagged with Ctags 42 */ 43