I've committed the following small whitespace patch that allows one to do 'grep -E ^gfc_free' to find functions starting with this pattern.
2011-10-30 Steven G. Kargl <ka...@gcc.gnu.org> * symbol.c (gfc_free_charlen): Whitespace. Index: symbol.c =================================================================== --- symbol.c (revision 180686) +++ symbol.c (working copy) @@ -3209,7 +3209,8 @@ gfc_new_charlen (gfc_namespace *ns, gfc_ /* Free the charlen list from cl to end (end is not freed). Free the whole list if end is NULL. */ -void gfc_free_charlen (gfc_charlen *cl, gfc_charlen *end) +void +gfc_free_charlen (gfc_charlen *cl, gfc_charlen *end) { gfc_charlen *cl2; -- Steve