aboutsummaryrefslogtreecommitdiff
path: root/jim-subcmd.h
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2011-09-12 13:33:51 +1000
committerSteve Bennett <steveb@workware.net.au>2011-09-12 16:58:56 +1000
commitd9c7cb8ee1548b7b94ca9758ae6501cd9a1e0ee6 (patch)
tree11c7f1bfb943313d05423884425dae6ecf18e7d2 /jim-subcmd.h
parent39f8b5dedf4b713ce58cfa4bdd84d473d30fbeba (diff)
downloadjimtcl-d9c7cb8ee1548b7b94ca9758ae6501cd9a1e0ee6.zip
jimtcl-d9c7cb8ee1548b7b94ca9758ae6501cd9a1e0ee6.tar.gz
jimtcl-d9c7cb8ee1548b7b94ca9758ae6501cd9a1e0ee6.tar.bz2
Remove all trailing whitespace in source
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim-subcmd.h')
-rw-r--r--jim-subcmd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/jim-subcmd.h b/jim-subcmd.h
index b834698..3a672eb 100644
--- a/jim-subcmd.h
+++ b/jim-subcmd.h
@@ -35,7 +35,7 @@ typedef struct {
/**
* Looks up the appropriate subcommand in the given command table and return
* the command function which implements the subcommand.
- * NULL will be returned and an appropriate error will be set if the subcommand or
+ * NULL will be returned and an appropriate error will be set if the subcommand or
* arguments are invalid.
*
* Typical usage is:
@@ -62,7 +62,7 @@ int Jim_SubCmdProc(Jim_Interp *interp, int argc, Jim_Obj *const *argv);
/**
* Invokes the given subcmd with the given args as returned
* by Jim_ParseSubCmd()
- *
+ *
* If ct is NULL, returns JIM_ERR, leaving any message.
* Otherwise invokes ct->function
*
@@ -73,13 +73,13 @@ int Jim_CallSubCmd(Jim_Interp *interp, const jim_subcmd_type *ct, int argc, Jim_
/**
* Standard processing for a command.
- *
+ *
* This does the '-help' and '-usage' check and the number of args checks.
* for a top level command against a single 'jim_subcmd_type' structure.
*
* Additionally, if command_table->function is set, it should point to a sub command table
* and '-subhelp ?subcmd?', '-subusage' and '-subcommands' are then also recognised.
- *
+ *
* Returns 0 if user requested usage, -1 on arg error, 1 if OK to process.
*/
int