| Commit message (Expand) | Author | Age | Files | Lines |
* | maint: update copyright years | Akim Demaille | 2013-01-12 | 1 | -1/+1 |
* | style changes: run cppi | Akim Demaille | 2012-12-21 | 1 | -7/+7 |
* | maint: run "make update-copyright". | Jim Meyering | 2012-01-13 | 1 | -1/+1 |
* | global: remove unnecessary horizontal tabs. | Joel E. Denny | 2011-07-24 | 1 | -8/+8 |
* | maint: run "make update-copyright". | Joel E. Denny | 2011-01-02 | 1 | -2/+2 |
* | Do not use date ranges in copyright notices. | Paul Eggert | 2010-06-17 | 1 | -2/+2 |
* | Fix some comments concerning LR(0) versus LALR(1). | Joel E. Denny | 2010-01-04 | 1 | -1/+1 |
* | maint: run "make update-copyright" | Joel E. Denny | 2010-01-04 | 1 | -2/+2 |
* | Finish implementing %define lr.type. | Joel E. Denny | 2009-04-21 | 1 | -2/+10 |
* | * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used | Paul Eggert | 2007-09-21 | 1 | -0/+3 |
* | Update to GPLv3. | Paul Eggert | 2007-08-15 | 1 | -7/+5 |
* | * LR0.c (new_itemsets): Fix wording in comments: say item index rather | Joel E. Denny | 2007-07-10 | 1 | -2/+3 |
* | * src/lalr.c (state_lookahead_tokens_count): For code readability, | Joel E. Denny | 2007-05-28 | 1 | -1/+2 |
* | Don't depend on C99 features. | Joel E. Denny | 2007-05-28 | 1 | -5/+0 |
* | * NEWS (2.3a+): Mention yesterday's state-removal change. | Joel E. Denny | 2007-05-08 | 1 | -1/+1 |
* | If conflict resolution makes states unreachable, remove those states, | Joel E. Denny | 2007-05-07 | 1 | -0/+12 |
* | Minor code cleanup in parser table construction. | Joel E. Denny | 2007-05-07 | 1 | -4/+3 |
* | For consistency, use `lookahead' instead of `look-ahead' or | Joel E. Denny | 2006-06-10 | 1 | -6/+6 |
* | Update FSF postal mail address. | Paul Eggert | 2005-05-14 | 1 | -2/+2 |
* | Remove uses of 'short int' and 'unsigned short int' in the parser generators. | Paul Eggert | 2004-12-17 | 1 | -6/+6 |
* | Use "look-ahead" instead of "lookahead", consistently. | Paul Eggert | 2004-06-21 | 1 | -6/+6 |
* | Use 'short int' rather than 'short', and similarly for 'long', 'unsigned', etc. | Paul Eggert | 2004-03-31 | 1 | -7/+7 |
* | Use more-consistent naming conventions for local vars. | Paul Eggert | 2003-02-03 | 1 | -3/+3 |
* | (state_number_as_int): Now inline functions rather than macros, to avoid casts. | Paul Eggert | 2002-12-13 | 1 | -2/+6 |
* | (state_number): Renamed from state_number_t. | Paul Eggert | 2002-12-11 | 1 | -42/+46 |
* | Remove all uses of PARAMS, since we now assume C89 or better. | Paul Eggert | 2002-10-21 | 1 | -19/+14 |
* | Instead of attaching lookaheads and duplicating the rules being | Akim Demaille | 2002-08-01 | 1 | -12/+4 |
* | * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not | Akim Demaille | 2002-07-29 | 1 | -15/+29 |
* | Fix some memory leaks, and fix a bug: state 0 was examined twice. | Akim Demaille | 2002-07-03 | 1 | -47/+48 |
* | * src/state.h (reductions_t): Rename member `nreds' as num. | Akim Demaille | 2002-06-30 | 1 | -4/+4 |
* | * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT) | Akim Demaille | 2002-06-30 | 1 | -27/+29 |
* | * src/output.c (action_row): Let default_rule be always a rule | Akim Demaille | 2002-06-30 | 1 | -1/+7 |
* | * src/state.h, src/state.c (shifts_to): New. | Akim Demaille | 2002-06-30 | 1 | -0/+4 |
* | * src/LR0.c (save_reductions): Remove, replaced by... | Akim Demaille | 2002-06-30 | 1 | -9/+12 |
* | * src/LR0.c (state_list_t, state_list_append): New. | Akim Demaille | 2002-06-30 | 1 | -9/+7 |
* | Use hash.h for the state hash table. | Akim Demaille | 2002-06-30 | 1 | -5/+16 |
* | * src/state.h, src/state.c (state_new): New, extracted from... | Akim Demaille | 2002-06-30 | 1 | -3/+7 |
* | * src/state.h (state_number_t, STATE_NUMBER_MAX): New. | Akim Demaille | 2002-06-30 | 1 | -2/+13 |
* | * src/state.h, src/state.c (state_rule_lookaheads_print): New. | Akim Demaille | 2002-06-15 | 1 | -0/+6 |
* | * src/conflicts.c (log_resolution): Accept the rule involved in | Akim Demaille | 2002-06-15 | 1 | -7/+7 |
* | * src/state.h (state_t): Replace the `lookaheadsp' member, a | Akim Demaille | 2002-06-15 | 1 | -2/+3 |
* | * src/state.h (state_t): `solved_conflicts' is a new member. | Akim Demaille | 2002-05-26 | 1 | -1/+6 |
* | * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c, | Akim Demaille | 2002-05-26 | 1 | -1/+1 |
* | Kill GCC warnings. | Akim Demaille | 2002-05-07 | 1 | -1/+1 |
* | Propagate more token_number_t. | Akim Demaille | 2002-04-22 | 1 | -1/+1 |
* | * src/gram.h, src/gram.c (error_token_number): Remove, use | Akim Demaille | 2002-04-09 | 1 | -1/+1 |
* | * src/gram.h (item_number_t): New, the type of item numbers in | Akim Demaille | 2002-04-08 | 1 | -2/+2 |
* | * src/gram.h, src/gram.c (nitems): Remove, it is an alias of | Akim Demaille | 2002-04-07 | 1 | -1/+1 |
* | Rename all the `bucket's as `symbol_t'. | Akim Demaille | 2002-04-07 | 1 | -1/+1 |
* | * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c | Akim Demaille | 2001-12-29 | 1 | -1/+1 |