Commit 5af3679c by Bruce Korb

Clarify the second argument usage for "c-fix"-es.

From-SVN: r131549
parent cdcae745
...@@ -229,11 +229,12 @@ MAKING CHANGES TO INCLHACK.DEF ...@@ -229,11 +229,12 @@ MAKING CHANGES TO INCLHACK.DEF
c_fix_arg = "#ifndef %1\n%0\n#endif"; c_fix_arg = "#ifndef %1\n%0\n#endif";
c_fix_arg = "#define[ \t]+([A-Z][A-Z0-9a-z_]*).*"; c_fix_arg = "#define[ \t]+([A-Z][A-Z0-9a-z_]*).*";
This would wrap a traditional #define inside of a "#ifndef"/"#endif" This would wrap a one line #define inside of a "#ifndef"/"#endif"
pair. The second "c_fix_arg" may be omitted *IF* there is pair. The second "c_fix_arg" may be omitted *IF* there is a select
a select clause and the first one matches the text you want clause and the first one identifies the text you wish to reformat.
replaced. You may delete text by supplying an empty string for It will then be used as the second "c_fix_arg". You may delete the
the format (the first "c_fix_arg"). selected text by supplying an empty string for the format (the first
"c_fix_arg").
Note: In general, a format c_fix may be used in place of one Note: In general, a format c_fix may be used in place of one
sed expression. However, it will need to be rewritten by sed expression. However, it will need to be rewritten by
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment