Merge remote-tracking branch 'origin/maint'

* origin/maint:
  maint: remove useless file
  update files to ignore
  remove useless include
  use locale-indep. c_is* functions for parsing, not isspace, isprint etc
  gnulib: update
  --help: include a place to report translation issues
  tests: style changes
  tests: fix push-pull test
  yacc.c: style changes

Conflicts:
	src/system.h
This commit is contained in:
Akim Demaille
2012-09-04 18:51:55 +02:00
9 changed files with 63 additions and 44 deletions

View File

@@ -94,6 +94,7 @@
#include <config.h>
#include "system.h"
#include "c-ctype.h"
#include "complain.h"
#include "conflicts.h"
#include "files.h"
@@ -3255,11 +3256,11 @@ add_param (param_type type, char *decl, location loc)
/* Strip the surrounding '{' and '}', and any blanks just inside
the braces. */
--p;
while (isspace ((unsigned char) *p))
while (c_isspace ((unsigned char) *p))
--p;
p[1] = '\0';
++decl;
while (isspace ((unsigned char) *decl))
while (c_isspace ((unsigned char) *decl))
++decl;
}