maint: address sc_prohibit_doubled_word.

* data/yacc.c, doc/bison.texinfo: Reword to avoid having to
	disable that check.
	* cfg.mk: No longer skip this test.
This commit is contained in:
Akim Demaille
2012-02-19 12:54:09 +01:00
parent db3458d6ea
commit 762caaf639
3 changed files with 6 additions and 7 deletions

View File

@@ -4194,7 +4194,7 @@ In references, in order to specify names containing dots and dashes, an explicit
bracketed syntax @code{$[name]} and @code{@@[name]} must be used:
@example
@group
if-stmt: IF '(' expr ')' THEN then.stmt ';'
if-stmt: "if" '(' expr ')' "then" then.stmt ';'
@{ $[if-stmt] = new_if_stmt ($expr, $[then.stmt]); @}
@end group
@end example