https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #12 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Steve Kargl from comment #9)
> +      if (!gfc_option.warn_tabs && c == '\t')
> +       gfc_warning ("Nonconforming tab character in FORMAT at %C");
>      }

Nowadays, this would be:

if (c == '\t')
 gfc_warning (OPT_Wtabs, Nonconforming tab character in FORMAT at %C");

Cheers,

Manuel.

Reply via email to