style changes.

* src/parse-gram.y, src/symtab.c: Space changes.
* src/symtab.h: Comment changes.
This commit is contained in:
Akim Demaille
2012-07-22 12:28:31 +02:00
parent 4c0f554348
commit 0560fa24d6
3 changed files with 15 additions and 15 deletions

View File

@@ -504,8 +504,8 @@ symbols.prec:
symbol.prec: symbol.prec:
symbol { $$ = $1; } symbol { $$ = $1; }
| symbol INT { $$ = $1; symbol_user_token_number_set ($1, $2, @2); } | symbol INT { $$ = $1; symbol_user_token_number_set ($1, $2, @2); }
; ;
/* One or more symbols to be %typed. */ /* One or more symbols to be %typed. */
symbols.1: symbols.1:

View File

@@ -179,12 +179,12 @@ void symbol_code_props_set (symbol *sym, code_props_type kind,
code_props const *destructor); code_props const *destructor);
/** Get the computed \c \%destructor or \c %printer for \c sym, which was /** Get the computed \c \%destructor or \c %printer for \c sym, which was
initialized with \c code_props_none_init if there's no \c \%destructor or initialized with \c code_props_none_init if there's no \c \%destructor or
\c %printer. */ \c %printer. */
code_props const *symbol_code_props_get (symbol const *sym, code_props const *symbol_code_props_get (symbol const *sym,
code_props_type kind); code_props_type kind);
/* Set the \c precedence associated with \c sym. /** Set the \c precedence associated with \c sym.
Ensure that \a symbol is a terminal. Ensure that \a symbol is a terminal.
Do nothing if invoked with \c undef_assoc as \c assoc. */ Do nothing if invoked with \c undef_assoc as \c assoc. */