1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00

[exmode] Decode \" . Refs #196

This commit is contained in:
Witold Filipczyk 2022-11-15 22:48:56 +01:00
parent 5f684efdd2
commit 2688fb83eb

View File

@ -112,14 +112,25 @@ exmode_exec(struct session *ses, char buffer[INPUT_LINE_BUFFER_SIZE])
void
try_exmode_exec(struct session *ses, const char *val)
{
char *buffer = stracpy(val);
char *command;
char *args;
struct string res;
struct string inp;
struct string what = INIT_STRING("\\\"", 2);
struct string replace = INIT_STRING("\"", 1);
if (!buffer) {
if (!val || !init_string(&res)) {
return;
}
if (!init_string(&inp)) {
done_string(&res);
return;
}
add_to_string(&inp, val);
string_replace(&res, &inp, &what, &replace);
char *command = buffer;
char *args = command;
command = res.source;
args = command;
int i;
while (*command == ':') command++;
@ -133,8 +144,8 @@ try_exmode_exec(struct session *ses, const char *val)
if (exmode_handlers[i](ses, command, args))
break;
}
mem_free(buffer);
done_string(&inp);
done_string(&res);
}
static enum input_line_code