minor list cleanup

From: Neil Conway <neilc(at)samurai(dot)com>
To: pgsql-patches <pgsql-patches(at)postgresql(dot)org>
Subject: minor list cleanup
Date: 2004-09-26 23:56:00
Message-ID: 1096242960.25688.693.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

This patch makes a few minor cleanups:

(1) Replace while loop with the new forboth() construct in
parser/analyze.c

(2) Replace lcons() with lappend() in SearchCatCacheList(). Since these
now have the same performance, there is no reason to prefer lcons() in
this case, and using lappend() leads to cleaner code.

(3) Improve the name of the second parameter to for_each_cell()

Barring any objections, I intend to apply this patch later today.

-Neil

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Neil Conway 2004-09-26 23:57:34 Re: Code/comment cleanups now that odbc is gone.
Previous Message Neil Conway 2004-09-26 23:52:45 void * cast cleanup