summaryrefslogtreecommitdiffstats
path: root/generic/tclParse.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-10-09 12:53:47 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-10-09 12:53:47 (GMT)
commitcd1fc2183ef5dfde922e6b57a0f9419f84482a97 (patch)
tree6be368fdc2f5a1b5ed20a30cff555c945a10d91f /generic/tclParse.c
parent7bf5af5c220c94675e6cbacf175b2bac28df1432 (diff)
parent208927f00929ae34e598875f23dedcf7494668b2 (diff)
downloadtcl-cd1fc2183ef5dfde922e6b57a0f9419f84482a97.zip
tcl-cd1fc2183ef5dfde922e6b57a0f9419f84482a97.tar.gz
tcl-cd1fc2183ef5dfde922e6b57a0f9419f84482a97.tar.bz2
Merge 8.6. Don't inline functions which are too big to be inlined (according to the -Winline compiler flag)
Diffstat (limited to 'generic/tclParse.c')
-rw-r--r--generic/tclParse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclParse.c b/generic/tclParse.c
index 86ce1d0..daad31d 100644
--- a/generic/tclParse.c
+++ b/generic/tclParse.c
@@ -119,7 +119,7 @@ const char tclCharTypeTable[] = {
* Prototypes for local functions defined in this file:
*/
-static inline int CommandComplete(const char *script, int numBytes);
+static int CommandComplete(const char *script, int numBytes);
static int ParseComment(const char *src, int numBytes,
Tcl_Parse *parsePtr);
static int ParseTokens(const char *src, int numBytes, int mask,
@@ -2396,7 +2396,7 @@ TclSubstTokens(
*----------------------------------------------------------------------
*/
-static inline int
+static int
CommandComplete(
const char *script, /* Script to check. */
int numBytes) /* Number of bytes in script. */