diff options
| author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-09 21:59:02 +0000 |
|---|---|---|
| committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-09 21:59:02 +0000 |
| commit | 206bdab48ff599b1ea22c4bf471f299a404448af (patch) | |
| tree | 57b5d2e6a7a917f8d9b13cfec0c385dc1739b105 | |
| parent | 6454616d15aca54db2c07e8c6fee681967c2658d (diff) | |
| download | ppe42-gcc-206bdab48ff599b1ea22c4bf471f299a404448af.tar.gz ppe42-gcc-206bdab48ff599b1ea22c4bf471f299a404448af.zip | |
* c-decl.c (SCOPE_LIST_APPEND): Remove bogus line continuation.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70278 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/c-decl.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7abd2c602bc..6ebb836b2fe 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 b31686b4a5e..ac2089c2e26 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); \ |

