diff options
author | nyamatongwe <devnull@localhost> | 2009-09-04 21:34:56 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-09-04 21:34:56 +0000 |
commit | 5d95145f07a4f91225d8e31892621063732ffac4 (patch) | |
tree | 5c52f5dc5bb47a4f95690f480f6075ea114cf684 /src | |
parent | 3a03f0872c90b1ed653192f039f3f25c92b92a4b (diff) | |
download | scintilla-mirror-5d95145f07a4f91225d8e31892621063732ffac4.tar.gz |
Fixed warning about fall through which could have caused problems when
space characters added to set of word characters.
Diffstat (limited to 'src')
-rw-r--r-- | src/RESearch.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/RESearch.cxx b/src/RESearch.cxx index 200bba516..0c400450e 100644 --- a/src/RESearch.cxx +++ b/src/RESearch.cxx @@ -418,6 +418,7 @@ int RESearch::GetBackslashExpression( ChSet(static_cast<unsigned char>(c)); } } + break; case 'w': for (c = 0; c < MAXCHR; c++) { if (iswordc(static_cast<unsigned char>(c))) { |