summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authorpooryorick <com.digitalsmarties@pooryorick.com>2017-11-23 18:24:09 (GMT)
committerpooryorick <com.digitalsmarties@pooryorick.com>2017-11-23 18:24:09 (GMT)
commit9b1ecce298fc120bc981d5182cc9c45bcfb0971d (patch)
tree26eaa48efc5dacfb10709aca59320a22a75a3c1b /generic/tclBasic.c
parent75924256c128fb94dc0cfbddf6d56fc89aeb10e7 (diff)
downloadtcl-9b1ecce298fc120bc981d5182cc9c45bcfb0971d.zip
tcl-9b1ecce298fc120bc981d5182cc9c45bcfb0971d.tar.gz
tcl-9b1ecce298fc120bc981d5182cc9c45bcfb0971d.tar.bz2
Move return type to its own line.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 2acd2e7..2f05425 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -2285,7 +2285,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 */
@@ -8210,7 +8211,8 @@ Tcl_NRCreateCommand(
return (Tcl_Command) cmdPtr;
}
-Tcl_Command TclNRCreateCommandInNs (
+Tcl_Command
+TclNRCreateCommandInNs (
Tcl_Interp *interp,
const char *cmdName,
Tcl_Namespace *nsPtr,