diff options
author | nyamatongwe <devnull@localhost> | 2001-01-04 06:37:54 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-01-04 06:37:54 +0000 |
commit | eaca189e993e99bbead7bced828f18db5301da1c (patch) | |
tree | 9d3dc4127ec9f6885c17211e5d25a872d2d55cef | |
parent | e41bba607ae56c78d25c18e944a0c87972f05cf2 (diff) | |
download | scintilla-mirror-eaca189e993e99bbead7bced828f18db5301da1c.tar.gz |
Dropped unused parameter to avoid warning.
-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)) { |