mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-16 15:53:03 +00:00
style changes: run cppi
Run it in src/ for a start. * src/AnnotationList.h, src/InadequacyList.h, src/Sbitset.h, * src/closure.c, src/complain.h, src/flex-scanner.h, src/getargs.h, * src/gram.h, src/graphviz.h, src/ielr.h, src/location.h, * src/muscle-tab.h, src/named-ref.h, src/relation.h, src/scan-code.h, * src/state.h, src/symtab.h, src/system.h, src/uniqstr.h: Reindent preprocessor directives.
This commit is contained in:
@@ -46,7 +46,7 @@ typedef enum
|
||||
|
||||
/** Internal token numbers. */
|
||||
typedef int symbol_number;
|
||||
#define SYMBOL_NUMBER_MAXIMUM INT_MAX
|
||||
# define SYMBOL_NUMBER_MAXIMUM INT_MAX
|
||||
|
||||
|
||||
typedef struct symbol symbol;
|
||||
@@ -126,16 +126,16 @@ struct symbol
|
||||
};
|
||||
|
||||
/** Undefined user number. */
|
||||
#define USER_NUMBER_UNDEFINED -1
|
||||
# define USER_NUMBER_UNDEFINED -1
|
||||
|
||||
/* `symbol->user_token_number == USER_NUMBER_HAS_STRING_ALIAS' means
|
||||
this symbol has a literal string alias. For instance, `%token foo
|
||||
"foo"' has `"foo"' numbered regularly, and `foo' numbered as
|
||||
USER_NUMBER_HAS_STRING_ALIAS. */
|
||||
#define USER_NUMBER_HAS_STRING_ALIAS -9991
|
||||
# define USER_NUMBER_HAS_STRING_ALIAS -9991
|
||||
|
||||
/* Undefined internal token number. */
|
||||
#define NUMBER_UNDEFINED (-1)
|
||||
# define NUMBER_UNDEFINED (-1)
|
||||
|
||||
/** Fetch (or create) the symbol associated to KEY. */
|
||||
symbol *symbol_from_uniqstr (const uniqstr key, location loc);
|
||||
|
||||
Reference in New Issue
Block a user