style: formatting changes in NEWS and complain.c

This commit is contained in:
Akim Demaille
2019-01-27 07:17:54 +01:00
parent 83ebc8bdb6
commit 59a108c0a6
2 changed files with 8 additions and 6 deletions

8
NEWS
View File

@@ -5,11 +5,11 @@ GNU Bison NEWS
* Noteworthy changes in release 3.3 (2019-01-26) [stable]
A new mailing list was created, Bison Announce. It is low traffic, and is
only about announcing new releases and important messages (e.g., polls about
major decisions to make).
A new mailing list was created, Bison Announce. It is low traffic, and is
only about announcing new releases and important messages (e.g., polls
about major decisions to make).
https://lists.gnu.org/mailman/listinfo/bison-announce
https://lists.gnu.org/mailman/listinfo/bison-announce
** Backward incompatible changes

View File

@@ -421,8 +421,10 @@ duplicate_rule_directive (char const *directive,
location first, location second)
{
unsigned i = 0;
complain_indent (&second, complaint, &i, _("only one %s allowed per rule"), directive);
complain_indent (&second, complaint, &i,
_("only one %s allowed per rule"), directive);
i += SUB_INDENT;
complain_indent (&first, complaint, &i, _("previous declaration"));
complain_indent (&first, complaint, &i,
_("previous declaration"));
fixits_register (&second, "");
}