Get rid of SetBufferWriteMode(), which was an accident waiting to happen.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: ca05ba2a9d6e9b2a41c16eb1844fdc4c66fce1d4
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2000-03-31T02:43:31Z
Releases: 7.1.1
Get rid of SetBufferWriteMode(), which was an accident waiting to happen.
In the event of an elog() while the mode was set to immediate write,
there was no way for it to be set back to the normal delayed write.
The mechanism was a waste of space and cycles anyway, since the only user
was varsup.c, which could perfectly well call FlushBuffer directly.
Now it does just that, and the notion of a write mode is gone.

Files