diff options
author | nyamatongwe <devnull@localhost> | 2007-11-15 10:24:41 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-11-15 10:24:41 +0000 |
commit | a034dc7d6f82af5bb3f3b2da349748044c9d9e89 (patch) | |
tree | 6109dbff418e519d8d912c9c88192b29c264c888 /src | |
parent | b79a150f204ed6890d6699ab52f1be817904b744 (diff) | |
download | scintilla-mirror-a034dc7d6f82af5bb3f3b2da349748044c9d9e89.tar.gz |
Made name follow convention.
Diffstat (limited to 'src')
-rw-r--r-- | src/KeyWords.cxx | 2 | ||||
-rw-r--r-- | src/LexR.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx index 9261e1296..29538d57b 100644 --- a/src/KeyWords.cxx +++ b/src/KeyWords.cxx @@ -209,7 +209,7 @@ int Scintilla_LinkLexers() { LINK_LEXER(lmPS); LINK_LEXER(lmPureBasic); LINK_LEXER(lmPython); - LINK_LEXER(lmr); + LINK_LEXER(lmR); LINK_LEXER(lmREBOL); LINK_LEXER(lmRuby); LINK_LEXER(lmScriptol); diff --git a/src/LexR.cxx b/src/LexR.cxx index 0ca45cfd0..67e779f55 100644 --- a/src/LexR.cxx +++ b/src/LexR.cxx @@ -210,4 +210,4 @@ static const char * const RWordLists[] = { -LexerModule lmr(SCLEX_R, ColouriseRDoc, "r", FoldRDoc, RWordLists); +LexerModule lmR(SCLEX_R, ColouriseRDoc, "r", FoldRDoc, RWordLists); |