Remove trailing whitespace.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4705 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2008-02-04 15:30:38 +00:00 committed by exg
commit ffe5bd6930
10 changed files with 25 additions and 25 deletions

View file

@ -451,7 +451,7 @@ char *parse_special(char **cmd, SERVER_REC *server, void *item,
static void gstring_append_escaped(GString *str, const char *text, int flags)
{
char esc[4], *escpos;
escpos = esc;
if (flags & PARSE_FLAG_ESCAPE_VARS)
*escpos++ = '%';
@ -465,7 +465,7 @@ static void gstring_append_escaped(GString *str, const char *text, int flags)
return;
}
*escpos = '\0';
*escpos = '\0';
while (*text != '\0') {
for (escpos = esc; *escpos != '\0'; escpos++) {
if (*text == *escpos) {