aboutsummaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2011-09-12 13:13:46 +1000
committerSteve Bennett <steveb@workware.net.au>2011-09-12 16:58:56 +1000
commit47f9ea83d7637cd1304acfbdd9ed02a18d5755cc (patch)
tree32d55b5860553d8a02562dc9f1c662175cf3a0e2 /utf8.h
parent4a56c0091c590e6891e01275fa19d949abe21539 (diff)
downloadjimtcl-47f9ea83d7637cd1304acfbdd9ed02a18d5755cc.zip
jimtcl-47f9ea83d7637cd1304acfbdd9ed02a18d5755cc.tar.gz
jimtcl-47f9ea83d7637cd1304acfbdd9ed02a18d5755cc.tar.bz2
Trim the size of the boostrap jimsh source
By removing comments and some large blocks of unnecessary code Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/utf8.h b/utf8.h
index cbce8de..7f4b849 100644
--- a/utf8.h
+++ b/utf8.h
@@ -29,7 +29,7 @@ int utf8_fromunicode(char *p, unsigned short uc);
#define utf8_charlen(C) 1
#define utf8_prev_len(S, L) 1
-#else
+#elif !defined(JIM_BOOTSTRAP)
/**
* Returns the length of the utf-8 sequence starting with 'c'.
*
@@ -103,6 +103,6 @@ int utf8_upper(int uc);
*/
int utf8_lower(int uc);
-#endif
+#endif /* JIM_BOOTSTRAP */
#endif