1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +03:00

Used modified version of indent that understands over 100 typedefs.

This commit is contained in:
Bruce Momjian
1997-09-08 21:56:23 +00:00
parent 075cede748
commit 59f6a57e59
413 changed files with 4472 additions and 4460 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.17 1997/09/08 02:31:29 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.18 1997/09/08 21:49:00 momjian Exp $
*
* NOTE
* XXX this code needs improvement--check for state violations and
@@ -25,10 +25,10 @@
#include "storage/ipc.h"
static void
ExcUnCaught(Exception * excP, ExcDetail detail, ExcData data,
ExcUnCaught(Exception *excP, ExcDetail detail, ExcData data,
ExcMessage message);
static void
ExcPrint(Exception * excP, ExcDetail detail, ExcData data,
ExcPrint(Exception *excP, ExcDetail detail, ExcData data,
ExcMessage message);
/*
@@ -98,7 +98,7 @@ EnableExceptionHandling(bool on)
}
static void
ExcPrint(Exception * excP,
ExcPrint(Exception *excP,
ExcDetail detail,
ExcData data,
ExcMessage message)
@@ -151,7 +151,7 @@ ExcGetUnCaught(void)
#ifdef NOT_USED
ExcProc *
ExcSetUnCaught(ExcProc * newP)
ExcSetUnCaught(ExcProc *newP)
{
ExcProc *oldP = ExcUnCaughtP;
@@ -163,7 +163,7 @@ ExcSetUnCaught(ExcProc * newP)
#endif
static void
ExcUnCaught(Exception * excP,
ExcUnCaught(Exception *excP,
ExcDetail detail,
ExcData data,
ExcMessage message)
@@ -174,7 +174,7 @@ ExcUnCaught(Exception * excP,
}
void
ExcRaise(Exception * excP,
ExcRaise(Exception *excP,
ExcDetail detail,
ExcData data,
ExcMessage message)