diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-05-03 10:52:25 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-05-03 10:52:25 -0400 |
commit | 8826d850781cb328482c8f92af2a3d93385cd63b (patch) | |
tree | 4fe1529d761610370259c5c8e3eab74b869c956b /src/backend/utils/adt/tsvector_op.c | |
parent | 1e77949e67b94af4d2a350c6dac9109419932608 (diff) | |
download | postgresql-8826d850781cb328482c8f92af2a3d93385cd63b.tar.gz postgresql-8826d850781cb328482c8f92af2a3d93385cd63b.zip |
Tweak a few more things in preparation for upcoming pgindent run.
These adjustments adjust code and comments in minor ways to prevent
pgindent from mangling them. Among other things, I tried to avoid
situations where pgindent would emit "a +b" instead of "a + b", and I
tried to avoid having it break up inline comments across multiple
lines.
Diffstat (limited to 'src/backend/utils/adt/tsvector_op.c')
-rw-r--r-- | src/backend/utils/adt/tsvector_op.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/utils/adt/tsvector_op.c b/src/backend/utils/adt/tsvector_op.c index d4fb0ff036d..8298e38545b 100644 --- a/src/backend/utils/adt/tsvector_op.c +++ b/src/backend/utils/adt/tsvector_op.c @@ -834,7 +834,8 @@ tsvector_filter(PG_FUNCTION_ARGS) posvout->pos[npos++] = posvin->pos[k]; } - if (!npos) /* no satisfactory positions found, so skip that lexeme */ + /* if no satisfactory positions found, skip lexeme */ + if (!npos) continue; arrout[j].haspos = true; |