1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Use preprocessor conditions compatible with Emacs indent.

Emacs wrongly indented hundreds of subsequent lines.
This commit is contained in:
Noah Misch
2019-04-28 12:56:53 -07:00
parent e481d26285
commit 90e7f31773
2 changed files with 6 additions and 3 deletions

View File

@@ -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,