diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 15:08:59 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-07 15:08:59 +0100 | 
| commit | bb0216db8e023ad51b7a1942a5a9b21ba89f28c9 (patch) | |
| tree | 084e057d5360a2c26198c59c9ed5db7228fb2773 /tools/sed-enums | |
| parent | 6501d13c9b8e7eb03cff342440f482dd8ef0fb5c (diff) | |
| download | ffi-efl-bb0216db8e023ad51b7a1942a5a9b21ba89f28c9.zip ffi-efl-bb0216db8e023ad51b7a1942a5a9b21ba89f28c9.tar.gz  | |
tools/sed-*: first eat all comments
Diffstat (limited to 'tools/sed-enums')
| -rw-r--r-- | tools/sed-enums | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/sed-enums b/tools/sed-enums index aa44675..a4e2e25 100644 --- a/tools/sed-enums +++ b/tools/sed-enums @@ -1,3 +1,10 @@ +# eat all comments +/^\s*\/\*/ { +  :comment +  /\*\/\s*$/ { n; b nocomment } +  n; b comment +} +:nocomment  # drop if don't start with (typedef)? enum  /^\s*(typedef\s)?\s*enum/ ! b  #  | 
