diff options
author | Bruce Momjian | 2001-01-17 17:26:45 +0000 |
---|---|---|
committer | Bruce Momjian | 2001-01-17 17:26:45 +0000 |
commit | 5088f0748a39c3f480d9a9c1b34c2a25d3011611 (patch) | |
tree | 3deddd5a01380ac4b5afc59f7e7bc8bad4e1eb64 /src/backend/bootstrap | |
parent | 8e9840383c94ee9da264b7b29d85cf2ce4866449 (diff) |
Change lcons(x, NIL) to makeList(x) where appropriate.
Diffstat (limited to 'src/backend/bootstrap')
-rw-r--r-- | src/backend/bootstrap/bootparse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index d0b0c0c5a8c..68e122373eb 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.33 2000/11/21 21:15:59 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.34 2001/01/17 17:26:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -254,7 +254,7 @@ Boot_BuildIndsStmt: boot_index_params: boot_index_params COMMA boot_index_param { $$ = lappend($1, $3); } - | boot_index_param { $$ = lcons($1, NIL); } + | boot_index_param { $$ = makeList1($1); } ; boot_index_param: |