From: Per Bothner Date: Sat, 9 Aug 2003 21:59:02 +0000 (-0700) Subject: * c-decl.c (SCOPE_LIST_APPEND): Remove bogus line continuation. X-Git-Tag: releases/gcc-3.4.0~4321 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d93cdfa884d3308eabaafa46e7bfda27c2234b8;p=thirdparty%2Fgcc.git * c-decl.c (SCOPE_LIST_APPEND): Remove bogus line continuation. From-SVN: r70278 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7abd2c602bcc..6ebb836b2fe0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-08-09 Per Bothner + + * c-decl.c (SCOPE_LIST_APPEND): Remove bogus line continuation. + 2003-08-09 John David Anglin * pa.c (pa_asm_output_mi_thunk): Fix typo. diff --git a/gcc/c-decl.c b/gcc/c-decl.c index b31686b4a5e3..ac2089c2e26c 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); \