aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-03-19 05:09:38 +0000
committernyamatongwe <devnull@localhost>2005-03-19 05:09:38 +0000
commit3aba478dba733de2bee9fdccc33fb7122d26bf21 (patch)
treefedbb49f8d7700318727a3939b83df96f6524f7d /src/Document.h
parenta7ea9df71c8e220f6dbc2f47e73917ef4c7370b4 (diff)
downloadscintilla-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.h1
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; }