]> git.saurik.com Git - bison.git/commitdiff
* src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 18 Dec 2006 17:27:23 +0000 (17:27 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 18 Dec 2006 17:27:23 +0000 (17:27 +0000)
since it wasn't used; only the typedef name 'semantic_type' is needed.
Also, omit trailing white space.

ChangeLog
src/location.h
src/symtab.h

index 05718a8dd60f77f284502baabe8828ff98a0d09e..8f996fa1d3d655e4b7daa519b1c4c26d32f45f62 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
+       since it wasn't used; only the typedef name 'semantic_type' is needed.
+       Also, omit trailing white space.
+
        * bootstrap: Sync from coreutils.
        (gnulib_extra_files): Add build-aux/announce.gen.
        (slurp): Adjust .gitignore files like .cvsignore files.
index 542c632057276b29dd646fc40db7efd85ca47247..d8ce03ba23dc7568396ed5c7e9cd341f7591c15c 100644 (file)
@@ -44,9 +44,9 @@ typedef struct
 static inline void
 boundary_set (boundary *b, const char *f, int l, int c)
 {
-  b->file = f; 
-  b->line = l;         
-  b->column = c;               
+  b->file = f;
+  b->line = l;
+  b->column = c;
 }
 
 /* Return nonzero if A and B are equal boundaries.  */
index c29492330d618db5aab4a50fff2b0b7968792fc7..9d5604af2f2f43934b1178c5f8aa64d8db5d8a24 100644 (file)
@@ -150,7 +150,7 @@ void symbol_destructor_set (symbol *sym, const char *destructor, location loc);
 const char *symbol_destructor_get (symbol *sym);
 
 /** Get the grammar location of the computed \c \%destructor for \c sym.
+
   \pre <tt>symbol_destructor_get (sym) != NULL</tt> */
 location symbol_destructor_location_get (symbol *sym);
 
@@ -201,10 +201,10 @@ extern location startsymbol_location;
 `-----------------*/
 
 /** A semantic type and its associated \c \%destructor and \c \%printer.
-   
+
    Access the fields of this struct only through the interface functions in
    this file.  \sa symbol::destructor  */
-typedef struct semantic_type {
+typedef struct {
   /** The key, name of the semantic type.  */
   uniqstr tag;