summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2014-12-19 03:47:32 +0000
committerGreg Ercolano <erco@seriss.com>2014-12-19 03:47:32 +0000
commit889a8a6d425baf7c0208d2bbd62947e1062db8e7 (patch)
treecb2da85686c32de81633d69addab7f7b0d300262 /fluid
parentcdee5e204faaefd92eab79a8738da5982c990e6c (diff)
Fixes STR #3169, comments #4, #5 and #7.
Prevents warnings from the OSX 10.9.x clang compiler. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10493 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/CodeEditor.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/fluid/CodeEditor.cxx b/fluid/CodeEditor.cxx
index 78ece08de..c5fe85381 100644
--- a/fluid/CodeEditor.cxx
+++ b/fluid/CodeEditor.cxx
@@ -179,7 +179,9 @@ void CodeEditor::style_parse(const char *text, char *style, int length) {
// Might be a keyword...
for (temp = text, bufptr = buf;
(islower(*temp) || *temp == '_') && bufptr < (buf + sizeof(buf) - 1);
- *bufptr++ = *temp++);
+ *bufptr++ = *temp++) {
+ // nothing
+ }
if (!islower(*temp) && *temp != '_') {
*bufptr = '\0';