diff options
author | pooryorick <com.digitalsmarties@pooryorick.com> | 2018-02-15 05:11:15 (GMT) |
---|---|---|
committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2018-02-15 05:11:15 (GMT) |
commit | 3243dfedd1ae0e297ce8d09380e236f12bfd41fb (patch) | |
tree | e52b86a1dba506ceab6de64884f277a360df925a /generic/tclBasic.c | |
parent | fa5058cbcabdcf06eb29d27f5e1b8d835e0e3ff3 (diff) | |
download | tcl-3243dfedd1ae0e297ce8d09380e236f12bfd41fb.zip tcl-3243dfedd1ae0e297ce8d09380e236f12bfd41fb.tar.gz tcl-3243dfedd1ae0e297ce8d09380e236f12bfd41fb.tar.bz2 |
Move return type to its own line.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 8a5afd0..5000821 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -2274,7 +2274,8 @@ Tcl_CreateObjCommand( proc, clientData, deleteProc); } -Tcl_Command TclCreateObjCommandInNs ( +Tcl_Command +TclCreateObjCommandInNs ( Tcl_Interp *interp, const char *cmdName, /* Name of command, without any namespace components */ Tcl_Namespace *namespace, /* The namespace to create the command in */ @@ -8192,7 +8193,8 @@ Tcl_NRCreateCommand( return (Tcl_Command) cmdPtr; } -Tcl_Command TclNRCreateCommandInNs ( +Tcl_Command +TclNRCreateCommandInNs ( Tcl_Interp *interp, const char *cmdName, Tcl_Namespace *nsPtr, |