summaryrefslogtreecommitdiff
path: root/src/TextPop.c
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowitz@users.sourceforge.net>2011-08-26 01:46:57 -0500
committerYaakov Selkowitz <yselkowitz@users.sourceforge.net>2011-08-26 17:31:58 -0500
commitfe2d2e640bf7a196fd1fe1f2efb7d4ba6382ce4f (patch)
treecb4061961e4785ce16720d360233a9ed24c34ab5 /src/TextPop.c
parent42123013118c42f40873b1b8785c7e5ce2734965 (diff)
Fix ambiguous 'else' warnings
Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/TextPop.c')
-rw-r--r--src/TextPop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/TextPop.c b/src/TextPop.c
index 9977bd4..7bf4536 100644
--- a/src/TextPop.c
+++ b/src/TextPop.c
@@ -1020,13 +1020,14 @@ Boolean once_only, show_current;
else
XawTextSetInsertionPoint( tw, pos);
- if (once_only)
+ if (once_only) {
if (show_current)
break;
else {
DoSearch(search);
return(TRUE);
}
+ }
count++;
}