aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-01-03 09:39:09 +0000
committernyamatongwe <devnull@localhost>2007-01-03 09:39:09 +0000
commit1f533743e62d766b98c82c62a67bcabd910f7c88 (patch)
tree51b5c30bd0b26f6d8f3a9e781c039bf30fd500c6
parentdcb0fd2d94cb036c4513a6f1549f3ee93dae34ec (diff)
downloadscintilla-mirror-1f533743e62d766b98c82c62a67bcabd910f7c88.tar.gz
Removed "NoBox" name as it was being copied by others and is now meaningless.
-rw-r--r--src/LexCPP.cxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/LexCPP.cxx b/src/LexCPP.cxx
index ee24c8765..51f32430b 100644
--- a/src/LexCPP.cxx
+++ b/src/LexCPP.cxx
@@ -371,8 +371,8 @@ static bool IsStreamCommentStyle(int style) {
// Store both the current line's fold level and the next lines in the
// level store to make it easy to pick up with each increment
// and to make it possible to fiddle the current level for "} else {".
-static void FoldNoBoxCppDoc(unsigned int startPos, int length, int initStyle,
- Accessor &styler) {
+static void FoldCppDoc(unsigned int startPos, int length, int initStyle,
+ WordList *[], Accessor &styler) {
bool foldComment = styler.GetPropertyInt("fold.comment") != 0;
bool foldPreprocessor = styler.GetPropertyInt("fold.preprocessor") != 0;
bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0;
@@ -461,11 +461,6 @@ static void FoldNoBoxCppDoc(unsigned int startPos, int length, int initStyle,
}
}
-static void FoldCppDoc(unsigned int startPos, int length, int initStyle, WordList *[],
- Accessor &styler) {
- FoldNoBoxCppDoc(startPos, length, initStyle, styler);
-}
-
static const char * const cppWordLists[] = {
"Primary keywords and identifiers",
"Secondary keywords and identifiers",