tweaks: change a 'do' to a 'while', and return early to elide an 'if'
parent
a99158c7c0
commit
37e9ada964
24
src/rcfile.c
24
src/rcfile.c
|
@ -188,27 +188,25 @@ char *parse_argument(char *ptr)
|
||||||
const char *ptr_save = ptr;
|
const char *ptr_save = ptr;
|
||||||
char *last_quote = NULL;
|
char *last_quote = NULL;
|
||||||
|
|
||||||
assert(ptr != NULL);
|
|
||||||
|
|
||||||
if (*ptr != '"')
|
if (*ptr != '"')
|
||||||
return parse_next_word(ptr);
|
return parse_next_word(ptr);
|
||||||
|
|
||||||
do {
|
while (*ptr != '\0') {
|
||||||
ptr++;
|
if (*++ptr == '"')
|
||||||
if (*ptr == '"')
|
|
||||||
last_quote = ptr;
|
last_quote = ptr;
|
||||||
} while (*ptr != '\0');
|
}
|
||||||
|
|
||||||
if (last_quote == NULL) {
|
if (last_quote == NULL) {
|
||||||
rcfile_error(N_("Argument '%s' has an unterminated \""), ptr_save);
|
rcfile_error(N_("Argument '%s' has an unterminated \""), ptr_save);
|
||||||
ptr = NULL;
|
return NULL;
|
||||||
} else {
|
|
||||||
*last_quote = '\0';
|
|
||||||
ptr = last_quote + 1;
|
|
||||||
}
|
}
|
||||||
if (ptr != NULL)
|
|
||||||
while (isblank((unsigned char)*ptr))
|
*last_quote = '\0';
|
||||||
ptr++;
|
ptr = last_quote + 1;
|
||||||
|
|
||||||
|
while (isblank((unsigned char)*ptr))
|
||||||
|
ptr++;
|
||||||
|
|
||||||
return ptr;
|
return ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue