diff options
author | nyamatongwe <devnull@localhost> | 2010-07-12 00:25:36 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-07-12 00:25:36 +0000 |
commit | e4c6c1b766b56bb109e5af523871b87016967f71 (patch) | |
tree | 7029f042bc607d2b088a577229e9e86baf3adafd | |
parent | e22f3adce3febfcf393dd955ff4fbd7c9450eae4 (diff) | |
download | scintilla-mirror-e4c6c1b766b56bb109e5af523871b87016967f71.tar.gz |
Fixed incorrect description of second margin settings.
-rw-r--r-- | doc/ScintillaDoc.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index c5f713b35..cd4939a55 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2733,9 +2733,10 @@ struct Sci_TextToFind { sure that no symbol margin includes 0x400 in its mask, any line with the marker gets the background colour changed.</p> - <p>To set a non-folding margin 1 use <code>SCI_SETMARGINMASKN(1, ~SC_MASK_FOLDERS)</code>; to - set a folding margin 2 use <code>SCI_SETMARGINMASKN(2, SC_MASK_FOLDERS)</code>. This is the - default set by Scintilla. <code>~SC_MASK_FOLDERS</code> is 0x1FFFFFF in hexadecimal or 33554431 + <p>To set a non-folding margin 1 use <code>SCI_SETMARGINMASKN(1, ~SC_MASK_FOLDERS)</code> + which is the default set by Scintilla. + To set a folding margin 2 use <code>SCI_SETMARGINMASKN(2, SC_MASK_FOLDERS)</code>. + <code>~SC_MASK_FOLDERS</code> is 0x1FFFFFF in hexadecimal or 33554431 decimal. Of course, you may need to display all 32 symbols in a margin, in which case use <code>SCI_SETMARGINMASKN(margin, -1)</code>.</p> |