summaryrefslogtreecommitdiff
path: root/src/backend/postmaster
diff options
context:
space:
mode:
authorNoah Misch2019-04-28 19:56:53 +0000
committerNoah Misch2019-04-28 19:56:53 +0000
commit90e7f317735159116fdc3f90e287dd688b18a353 (patch)
tree101b7d996cfe8ddbccd1a161560aeca04911df7f /src/backend/postmaster
parente481d26285b160058b093588e062cf3071fea192 (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.c4
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,