diff options
author | nyamatongwe <devnull@localhost> | 2005-03-19 05:09:38 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-03-19 05:09:38 +0000 |
commit | 3aba478dba733de2bee9fdccc33fb7122d26bf21 (patch) | |
tree | fedbb49f8d7700318727a3939b83df96f6524f7d /src/Document.h | |
parent | a7ea9df71c8e220f6dbc2f47e73917ef4c7370b4 (diff) | |
download | scintilla-mirror-3aba478dba733de2bee9fdccc33fb7122d26bf21.tar.gz |
Patch from Franck Marcia to treat lines containing only whitespace as
empty for the paragraph up and paragraph down actions.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h index f2fcc7c69..1b59b1dab 100644 --- a/src/Document.h +++ b/src/Document.h @@ -229,6 +229,7 @@ public: int WordPartLeft(int pos); int WordPartRight(int pos); int ExtendStyleRange(int pos, int delta, bool singleLine = false); + bool IsWhiteLine(int line); int ParaUp(int pos); int ParaDown(int pos); int IndentSize() { return actualIndentInChars; } |