diff options
author | nyamatongwe <unknown> | 2001-01-04 06:37:54 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-01-04 06:37:54 +0000 |
commit | 2f0909db43ab1ec7e343f36de13d0b4d08eef398 (patch) | |
tree | 9d3dc4127ec9f6885c17211e5d25a872d2d55cef /src/LexOthers.cxx | |
parent | a36562e7deb80b15cb477d2bc1255739b8b48b6c (diff) | |
download | scintilla-mirror-2f0909db43ab1ec7e343f36de13d0b4d08eef398.tar.gz |
Dropped unused parameter to avoid warning.
Diffstat (limited to 'src/LexOthers.cxx')
-rw-r--r-- | src/LexOthers.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx index 46a5109b3..d372c8b42 100644 --- a/src/LexOthers.cxx +++ b/src/LexOthers.cxx @@ -47,7 +47,7 @@ static void ColouriseBatchLine(char *lineBuffer, int startLine, int endLine, Acc // ToDo: %n (parameters), %EnvironmentVariable% colourising // ToDo: Colourise = > >> < | " #else -static void ColouriseBatchLine(char *lineBuffer, int endLine, int startLine, Accessor &styler) { +static void ColouriseBatchLine(char *lineBuffer, int endLine, int, Accessor &styler) { if (0 == strncmp(lineBuffer, "rem", 3)) { styler.ColourTo(endLine, 1); } else if (0 == strncmp(lineBuffer, "set", 3)) { |