mirror of
https://github.com/postgres/postgres.git
synced 2025-07-17 06:41:09 +03:00
Remove tabs after spaces in C comments
This was not changed in HEAD, but will be done later as part of a pgindent run. Future pgindent runs will also do this. Report by Tom Lane Backpatch through all supported branches, but not HEAD
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
* re_*comp and friends - compile REs
|
||||
* This file #includes several others (see the bottom).
|
||||
*
|
||||
* Copyright (c) 1998, 1999 Henry Spencer. All rights reserved.
|
||||
* Copyright (c) 1998, 1999 Henry Spencer. All rights reserved.
|
||||
*
|
||||
* Development of this software was funded, in part, by Cray Research Inc.,
|
||||
* UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics
|
||||
@ -564,7 +564,7 @@ makesearch(struct vars * v,
|
||||
* constraints, often knowing when you were in the pre state tells you
|
||||
* little; it's the next state(s) that are informative. But some of them
|
||||
* may have other inarcs, i.e. it may be possible to make actual progress
|
||||
* and then return to one of them. We must de-optimize such cases,
|
||||
* and then return to one of them. We must de-optimize such cases,
|
||||
* splitting each such state into progress and no-progress states.
|
||||
*/
|
||||
|
||||
@ -610,7 +610,7 @@ makesearch(struct vars * v,
|
||||
* parse - parse an RE
|
||||
*
|
||||
* This is actually just the top level, which parses a bunch of branches
|
||||
* tied together with '|'. They appear in the tree as the left children
|
||||
* tied together with '|'. They appear in the tree as the left children
|
||||
* of a chain of '|' subres.
|
||||
*/
|
||||
static struct subre *
|
||||
@ -1352,7 +1352,7 @@ bracket(struct vars * v,
|
||||
/*
|
||||
* cbracket - handle complemented bracket expression
|
||||
* We do it by calling bracket() with dummy endpoints, and then complementing
|
||||
* the result. The alternative would be to invoke rainbow(), and then delete
|
||||
* the result. The alternative would be to invoke rainbow(), and then delete
|
||||
* arcs as the b.e. is seen... but that gets messy.
|
||||
*/
|
||||
static void
|
||||
|
Reference in New Issue
Block a user