From: Pasha Bolokhov <pasha.bolokhov@gmail.com>
To: git@vger.kernel.org
Cc: pclouds@gmail.com, Pasha Bolokhov <pasha.bolokhov@gmail.com>
Subject: [PATCH] Improve function dir.c:trim_trailing_spaces()
Date: Wed, 28 May 2014 16:45:57 -0700 [thread overview]
Message-ID: <1401320757-9360-1-git-send-email-pasha.bolokhov@gmail.com> (raw)
Move backwards from the end of the string (more efficient for
lines which do not have trailing spaces or have just a couple).
Slightly more rare occurrences of 'text \ ' with a backslash
in between spaces are handled correctly.
Namely, the code in 8ba87adad6 does not reset 'last_space' when
a backslash is encountered and the above line stays intact as
a result
---
How about trailing tabs?
dir.c | 25 +++++++++++--------------
1 file changed, 11 insertions(+), 14 deletions(-)
diff --git a/dir.c b/dir.c
index eb6f581..3315eea 100644
--- a/dir.c
+++ b/dir.c
@@ -508,21 +508,18 @@ void clear_exclude_list(struct exclude_list *el)
static void trim_trailing_spaces(char *buf)
{
- int i, last_space = -1, nr_spaces, len = strlen(buf);
- for (i = 0; i < len; i++)
- if (buf[i] == '\\')
- i++;
- else if (buf[i] == ' ') {
- if (last_space == -1) {
- last_space = i;
- nr_spaces = 1;
- } else
- nr_spaces++;
- } else
- last_space = -1;
-
- if (last_space != -1 && last_space + nr_spaces == len)
+ int i, last_space, bslash = 0, len = strlen(buf);
+
+ if (len == 0 || buf[len - 1] != ' ')
+ return;
+ for (i = len - 2; i >= 0 && buf[i] == ' '; i--) ;
+ last_space = i + 1;
+ for ( ; i >=0 && buf[i] == '\\'; i--) bslash ^= 1;
+
+ if (!bslash)
buf[last_space] = '\0';
+ else if (bslash && last_space < len - 1)
+ buf[last_space + 1] = '\0';
}
int add_excludes_from_file_to_list(const char *fname,
--
1.9.1
next reply other threads:[~2014-05-28 23:46 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-28 23:45 Pasha Bolokhov [this message]
2014-05-29 20:13 ` [PATCH] Improve function dir.c:trim_trailing_spaces() Jeff King
2014-05-29 21:34 ` Pasha Bolokhov
2014-05-30 2:04 ` Jeff King
2014-05-30 18:45 ` Junio C Hamano
-- strict thread matches above, loose matches on Subject: below --
2014-05-31 15:21 Pasha Bolokhov
2014-06-02 6:47 ` Jeff King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1401320757-9360-1-git-send-email-pasha.bolokhov@gmail.com \
--to=pasha.bolokhov@gmail.com \
--cc=git@vger.kernel.org \
--cc=pclouds@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).