]> git.saurik.com Git - bison.git/commitdiff
Formatting changes.
authorAkim Demaille <demaille@gostai.com>
Tue, 12 Aug 2008 19:11:00 +0000 (21:11 +0200)
committerAkim Demaille <demaille@gostai.com>
Mon, 10 Nov 2008 10:11:52 +0000 (11:11 +0100)
ChangeLog
src/muscle_tab.h
src/output.c

index a1403addfb79afa81bd481c50ea21d5071c07dd3..ef5d3b9e8ab8aabf145bf29a3039f74983e801ce 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-11-10  Akim Demaille  <demaille@gostai.com>
+
+       Formatting changes.
+
 2008-11-10  Akim Demaille  <demaille@gostai.com>
 
        Update the variant example.
index 19fba8b9f5d7b78f549ae91bacf3b1e456f0d485..2f1e51e6602cee8a01787e4ce43556c5421f7c19 100644 (file)
@@ -1,5 +1,5 @@
 /* Muscle table manager for Bison,
-   Copyright (C) 2001, 2002, 2003, 2006, 2007 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
 
@@ -51,6 +51,7 @@ do {                                                          \
   muscle_insert (Key, obstack_finish (&muscle_obstack));       \
 } while(0)
 
+/* Key -> Value, but don't apply escaping to Value. */
 #define MUSCLE_INSERT_STRING_RAW(Key, Value)                   \
 do {                                                           \
   obstack_sgrow (&muscle_obstack, Value);                      \
@@ -58,6 +59,7 @@ do {                                                          \
   muscle_insert (Key, obstack_finish (&muscle_obstack));       \
 } while(0)
 
+/* Key -> Value, applying M4 escaping to Value. */
 #define MUSCLE_INSERT_STRING(Key, Value)                       \
 do {                                                           \
   MUSCLE_OBSTACK_SGROW (&muscle_obstack, Value);                \
index 5afab69f47259b8b172cae2b98343cc66565537b..d59429b03977966286a58276cdee590a002cb24e 100644 (file)
@@ -328,9 +328,9 @@ user_actions_output (FILE *out)
   fputs ("])\n\n", out);
 }
 
-/*--------------------------------------.
-| Output the merge functions to OUT.   |
-`--------------------------------------*/
+/*------------------------------------.
+| Output the merge functions to OUT.  |
+`------------------------------------*/
 
 static void
 merger_output (FILE *out)