aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ScintillaDoc.html10
-rw-r--r--doc/ScintillaHistory.html4
2 files changed, 13 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index b8789801f..a97aa6858 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -82,7 +82,7 @@
<h1>Scintilla Documentation</h1>
- <p>Last edited 16 April 2014 NH</p>
+ <p>Last edited 21 April 2014 NH</p>
<p>There is <a class="jump" href="Design.html">an overview of the internal design of
Scintilla</a>.<br />
@@ -5421,6 +5421,14 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
<td align="left">display hexadecimal fold levels in line margin to aid debugging of
folding. The appearance of this feature may change in the future.</td>
</tr>
+
+ <tr>
+ <td align="left">SC_FOLDFLAG_LINESTATE</td>
+ <td align="left">128</td>
+
+ <td align="left">display hexadecimal line state in line margin to aid debugging of lexing and folding.
+ May not be used at the same time as <code>SC_FOLDFLAG_LEVELNUMBERS</code>.</td>
+ </tr>
</tbody>
</table>
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index 0f0434da9..dc78adfd4 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -470,6 +470,10 @@
SC_MOD_INSERTCHECK.
</li>
<li>
+ Line state may be displayed in the line number margin to aid in debugging lexing and folding with
+ SC_FOLDFLAG_LINESTATE (128).
+ </li>
+ <li>
C++ lexer can highlight task marker keywords in comments as SCE_C_TASKMARKER.
</li>
<li>