summaryrefslogtreecommitdiff
path: root/util/epist/actions.cc
diff options
context:
space:
mode:
authorScott Moynes <smoynes@nexus.carleton.ca>2002-08-08 03:10:54 +0000
committerScott Moynes <smoynes@nexus.carleton.ca>2002-08-08 03:10:54 +0000
commit97e86c912ee33e9e75e68f9c193d78879f91d542 (patch)
tree7238344d0c7ed0f52300e36b21f5c543129aeee9 /util/epist/actions.cc
parent90ee16fc8664f38683edf3b2eb4dd376a572f4ce (diff)
A few bug fixes and change the config to case insensitive and be more
tolerant of errors.
Diffstat (limited to 'util/epist/actions.cc')
-rw-r--r--util/epist/actions.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/util/epist/actions.cc b/util/epist/actions.cc
index c4874983..7a895be7 100644
--- a/util/epist/actions.cc
+++ b/util/epist/actions.cc
@@ -39,17 +39,11 @@ Action::Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
for (int i = 0; str_types[i] != noaction; ++i) {
if (type == str_types[i]) {
- // 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);
+ _stringParam = str;
return;
}
}
-
+
_numberParam = atoi( str.c_str() );
// workspace 1 to the user is workspace 0 to us