aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexPerl.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-04-07 12:04:36 +0000
committernyamatongwe <unknown>2000-04-07 12:04:36 +0000
commit2b655a29a4e4d7e343884b85742aed8a033b6eef (patch)
tree337dc33f1d022c7a460caf1e607bac12fe6e7b61 /src/LexPerl.cxx
parentcda547b4fc80be948f4c1a0b3973706d1ba3b8eb (diff)
downloadscintilla-mirror-2b655a29a4e4d7e343884b85742aed8a033b6eef.tar.gz
Changing code to ensure no warnings are produced by compilers.
Diffstat (limited to 'src/LexPerl.cxx')
-rw-r--r--src/LexPerl.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/LexPerl.cxx b/src/LexPerl.cxx
index 155a0c1a2..c57934866 100644
--- a/src/LexPerl.cxx
+++ b/src/LexPerl.cxx
@@ -67,16 +67,6 @@ static bool isMatch(Accessor &styler, int lengthDoc, int pos, const char *val) {
return true;
}
-static bool isOKQuote(char ch) {
- if (isalnum(ch))
- return false;
- if (isspace(ch))
- return false;
- if (iscntrl(ch))
- return false;
- return true;
-}
-
static char opposite(char ch) {
if (ch == '(')
return ')';