aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>2003-08-09 14:59:02 -0700
committerPer Bothner <bothner@gcc.gnu.org>2003-08-09 14:59:02 -0700
commit3d93cdfa884d3308eabaafa46e7bfda27c2234b8 (patch)
tree57b5d2e6a7a917f8d9b13cfec0c385dc1739b105 /gcc
parentdfd8db867496a5f99a7d75b016cee01232ecd6f1 (diff)
downloadgcc-3d93cdfa884d3308eabaafa46e7bfda27c2234b8.zip
gcc-3d93cdfa884d3308eabaafa46e7bfda27c2234b8.tar.gz
gcc-3d93cdfa884d3308eabaafa46e7bfda27c2234b8.tar.bz2
* c-decl.c (SCOPE_LIST_APPEND): Remove bogus line continuation.
From-SVN: r70278
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/c-decl.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7abd2c6..6ebb836 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-09 Per Bothner <per@bothner.com>
+
+ * c-decl.c (SCOPE_LIST_APPEND): Remove bogus line continuation.
+
2003-08-09 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* pa.c (pa_asm_output_mi_thunk): Fix typo.
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index b31686b..ac2089c 100644
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -266,7 +266,7 @@ static GTY(()) struct c_scope *current_function_scope;
static GTY(()) struct c_scope *global_scope;
-/* Append VAR to LIST in scope SCOPE. */ \
+/* Append VAR to LIST in scope SCOPE. */
#define SCOPE_LIST_APPEND(scope, list, decl) do { \
struct c_scope *s_ = (scope); \
tree d_ = (decl); \