diff options
| author | nyamatongwe <devnull@localhost> | 2003-07-21 01:04:00 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2003-07-21 01:04:00 +0000 | 
| commit | 637ed01ada7596a01c2995e9f11ae8e78e17c22d (patch) | |
| tree | 7dd633d98e84d8b8c7985f9f71b93c4518b2bb8e | |
| parent | ae63e6cd756019b0b7b72da91a77559e72eb0305 (diff) | |
| download | scintilla-mirror-637ed01ada7596a01c2995e9f11ae8e78e17c22d.tar.gz | |
Fixed unused parameter warning.
| -rw-r--r-- | src/LexPS.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/LexPS.cxx b/src/LexPS.cxx index 97834862f..6a6f548ae 100644 --- a/src/LexPS.cxx +++ b/src/LexPS.cxx @@ -275,7 +275,7 @@ static void ColourisePSDoc(      sc.Complete();  } -static void FoldPSDoc(unsigned int startPos, int length, int initStyle, WordList *[], +static void FoldPSDoc(unsigned int startPos, int length, int, WordList *[],                         Accessor &styler) {      bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0;      bool foldAtElse = styler.GetPropertyInt("fold.at.else", 0) != 0; | 
