all repos — openbox @ b0239459c3486c9f5b4913b6071245265e6a19a2

openbox fork - make it a bit more like ryudo

drop the ""'s from actions' string arguments
Dana Jansens danakj@orodu.net
commit

b0239459c3486c9f5b4913b6071245265e6a19a2

parent

616fa39a1609809cecc628627139b8a96eef2989

1 files changed, 7 insertions(+), 1 deletions(-)

jump to
M util/epist/actions.ccutil/epist/actions.cc

@@ -39,7 +39,13 @@ };

for (int i = 0; str_types[i] != noaction; ++i) { if (type == str_types[i]) { - _stringParam = str; + // the first and last characters of the string are quotes, and we need to + // get rid of them + assert(str.size() >= 2); + assert(str[0] == '"'); + assert(str[str.size() - 1] == '"'); + + _stringParam = str.substr(1, str.size() - 2); return; } }