diff options
author | sabetts <sabetts> | 2005-01-15 17:25:13 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2005-01-15 17:25:13 +0000 |
commit | 9376a79ac58a8953da9a3c7bed929165c7703e5c (patch) | |
tree | 94551b2fc1677c868a6b4f81fb797d3b714e9bb9 | |
parent | 5ad6f48caa254f007bd786e1e4e005bd1070440d (diff) | |
download | ratpoison-9376a79ac58a8953da9a3c7bed929165c7703e5c.zip |
(init_user_commands): set the last argument of the
following commands to arg_REST: addhook, chdir, remhook, source,
tmpwm, and prompt.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/actions.c | 12 |
2 files changed, 12 insertions, 6 deletions
@@ -1,3 +1,9 @@ +2005-01-15 Shawn Betts <katia_dilkina@verizon.net> + + * src/actions.c (init_user_commands): set the last argument of the + following commands to arg_REST: addhook, chdir, remhook, source, + tmpwm, and prompt. + 2005-01-15 Shawn Betts <sabetts@vcn.bc.ca> * src/actions.c (init_user_commands): change select's argument to diff --git a/src/actions.c b/src/actions.c index 30291c9..8d408f9 100644 --- a/src/actions.c +++ b/src/actions.c @@ -154,13 +154,13 @@ init_user_commands() add_command ("abort", cmd_abort, 0, 0, 0); add_command ("addhook", cmd_addhook, 2, 2, 2, "Hook: ", arg_HOOK, - "Command: ", arg_STRING); + "Command: ", arg_REST); add_command ("alias", cmd_alias, 2, 2, 2, "Alias: ", arg_STRING, "Command: ", arg_REST); add_command ("banish", cmd_banish, 0, 0, 0); add_command ("chdir", cmd_chdir, 1, 0, 0, - "Dir: ", arg_STRING); + "Dir: ", arg_REST); add_command ("clrunmanaged", cmd_clrunmanaged, 0, 0, 0); add_command ("colon", cmd_colon, 1, 0, 0, "", arg_REST); @@ -259,7 +259,7 @@ init_user_commands() add_command ("redisplay", cmd_redisplay, 0, 0, 0); add_command ("remhook", cmd_remhook, 2, 2, 2, "Hook: ", arg_HOOK, - "Command: ", arg_STRING); + "Command: ", arg_REST); add_command ("remove", cmd_remove, 0, 0, 0); add_command ("resize", cmd_resize, 2, 0, 2, "", arg_NUMBER, @@ -277,7 +277,7 @@ init_user_commands() "Value: ", arg_REST); add_command ("shrink", cmd_shrink, 0, 0, 0); add_command ("source", cmd_source, 1, 1, 1, - "File: ", arg_STRING); + "File: ", arg_REST); add_command ("sselect", cmd_sselect, 1, 1, 1, "Screen: ", arg_NUMBER); add_command ("startup_message", cmd_startup_message, 1, 1, 1, @@ -285,7 +285,7 @@ init_user_commands() add_command ("time", cmd_time, 0, 0, 0); add_command ("title", cmd_rename, 0, 0, 0); add_command ("tmpwm", cmd_tmpwm, 1, 1, 1, - "Tmp wm: ", arg_STRING); + "Tmp wm: ", arg_REST); add_command ("unalias", cmd_unalias, 1, 1, 1, "Alias: ", arg_STRING); add_command ("unmanage", cmd_unmanage, 0, 0, 0); @@ -311,7 +311,7 @@ init_user_commands() add_command ("iother", cmd_iother, 0, 0, 0); add_command ("iprev", cmd_iprev, 0, 0, 0); add_command ("prompt", cmd_prompt, 1, 0, 0, - "", arg_STRING); + "", arg_REST); add_command ("sdump", cmd_sdump, 0, 0, 0); add_command ("sfdump", cmd_sfdump, 0, 0, 0); add_command ("undo", cmd_undo, 0, 0, 0); |