src/io.c: Remove C89 incompatible comment

Make commenting style consistent with everywhere else. Use "/* [...] */"
instead of "// [...]".

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2012-02-20 02:48:19 +01:00
parent 7c91248629
commit fdee1f2a22

View File

@ -574,7 +574,7 @@ io_load_app (void)
EXIT (_("syntax error in item repetition"));
}
else if (c == '!')
{ // endless item with exceptions
{ /* endless item with exceptions */
ungetc (c, data_file);
recur_exc_scan (&exc, data_file);
c = getc (data_file);