diff options
| author | Noah Misch | 2019-04-28 19:56:53 +0000 |
|---|---|---|
| committer | Noah Misch | 2019-04-28 19:56:53 +0000 |
| commit | 90e7f317735159116fdc3f90e287dd688b18a353 (patch) | |
| tree | 101b7d996cfe8ddbccd1a161560aeca04911df7f /src/backend/postmaster | |
| parent | e481d26285b160058b093588e062cf3071fea192 (diff) | |
Use preprocessor conditions compatible with Emacs indent.
Emacs wrongly indented hundreds of subsequent lines.
Diffstat (limited to 'src/backend/postmaster')
| -rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 0edd7f1dc7f..71ffb1345b6 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -2371,7 +2371,11 @@ processCancelRequest(Port *port, void *pkt) backendPID))); return; } +#ifndef EXEC_BACKEND /* make GNU Emacs 26.1 see brace balance */ } +#else + } +#endif /* No matching backend */ ereport(LOG, |
