aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/commands.c4
-rw-r--r--sway/container.c3
-rw-r--r--sway/stringop.c67
3 files changed, 55 insertions, 19 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 5cb661eb..842142e2 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -285,9 +285,9 @@ static bool cmd_split(struct sway_config *config, int argc, char **argv) {
return false;
}
if (strcasecmp(argv[0], "v") == 0 || strcasecmp(argv[0], "vertical") == 0) {
- _do_split(config, argc, argv, L_VERT);
+ _do_split(config, argc - 1, argv + 1, L_VERT);
} else if (strcasecmp(argv[0], "h") == 0 || strcasecmp(argv[0], "horizontal") == 0) {
- _do_split(config, argc, argv, L_HORIZ);
+ _do_split(config, argc - 1, argv + 1, L_HORIZ);
} else {
sway_log(L_ERROR, "Invalid split command (expected either horiziontal or vertical).");
return false;
diff --git a/sway/container.c b/sway/container.c
index 46694cbd..3158b8b0 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -31,6 +31,9 @@ static void free_swayc(swayc_t *c) {
}
remove_child(c->parent, c);
}
+ if (c->name) {
+ free(c->name);
+ }
free(c);
}
diff --git a/sway/stringop.c b/sway/stringop.c
index bbc0bcdf..1dff97bf 100644
--- a/sway/stringop.c
+++ b/sway/stringop.c
@@ -53,8 +53,9 @@ char *strip_comments(char *str) {
list_t *split_string(const char *str, const char *delims) {
list_t *res = create_list();
int i, j;
- for (i = 0, j = 0; i < strlen(str) + 1; ++i) {
- if (strchr(delims, str[i]) || i == strlen(str)) {
+ int len = strlen(str);
+ for (i = 0, j = 0; i < len + 1; ++i) {
+ if (strchr(delims, str[i]) || i == len) {
if (i - j == 0) {
continue;
}
@@ -63,7 +64,7 @@ list_t *split_string(const char *str, const char *delims) {
left[i - j] = 0;
list_add(res, left);
j = i + 1;
- while (j <= strlen(str) && str[j] && strchr(delims, str[j])) {
+ while (j <= len && str[j] && strchr(delims, str[j])) {
j++;
i++;
}
@@ -110,40 +111,72 @@ int unescape_string(char *string) {
for (i = 0; string[i]; ++i) {
if (string[i] == '\\') {
--len;
+ int shift = 0;
switch (string[++i]) {
case '0':
string[i - 1] = '\0';
- memmove(string + i, string + i + 1, len - i);
+ shift = 1;
break;
case 'a':
string[i - 1] = '\a';
- memmove(string + i, string + i + 1, len - i);
+ shift = 1;
break;
case 'b':
string[i - 1] = '\b';
- memmove(string + i, string + i + 1, len - i);
+ shift = 1;
break;
- case 't':
- string[i - 1] = '\t';
- memmove(string + i, string + i + 1, len - i);
+ case 'f':
+ string[i - 1] = '\f';
+ shift = 1;
break;
case 'n':
string[i - 1] = '\n';
- memmove(string + i, string + i + 1, len - i);
+ shift = 1;
+ break;
+ case 'r':
+ string[i - 1] = '\r';
+ shift = 1;
+ break;
+ case 't':
+ string[i - 1] = '\t';
+ shift = 1;
break;
case 'v':
string[i - 1] = '\v';
- memmove(string + i, string + i + 1, len - i);
+ shift = 1;
break;
- case 'f':
- string[i - 1] = '\f';
- memmove(string + i, string + i + 1, len - i);
+ case '\\':
+ shift = 1;
break;
- case 'r':
- string[i - 1] = '\r';
- memmove(string + i, string + i + 1, len - i);
+ case '\'':
+ string[i - 1] = '\'';
+ shift = 1;
+ break;
+ case '\"':
+ string[i - 1] = '\"';
+ shift = 1;
+ break;
+ case '?':
+ string[i - 1] = '?';
+ shift = 1;
break;
+ case 'x':
+ {
+ unsigned char c = 0;
+ shift = 1;
+ if (string[i+1] >= '0' && string[i+1] <= '9') {
+ shift = 2;
+ c = string[i+1] - '0';
+ if (string[i+2] >= '0' && string[i+2] <= '9') {
+ shift = 3;
+ c *= 0x10;
+ c += string[i+2] - '0';
+ }
+ }
+ string[i - 1] = c;
+ }
}
+ memmove(string + i, string + i + shift, len - i);
}
}
return len;