diff options
| author | nyamatongwe <unknown> | 2010-07-12 00:25:36 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2010-07-12 00:25:36 +0000 | 
| commit | 4d3c1e4b29af5bbb4ec8e62c31dacdb69c06ca12 (patch) | |
| tree | 7029f042bc607d2b088a577229e9e86baf3adafd | |
| parent | 0b6e7242716a538874d39d2e05d02182d456de88 (diff) | |
| download | scintilla-mirror-4d3c1e4b29af5bbb4ec8e62c31dacdb69c06ca12.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> | 
