diff options
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 01d2ae108..41ece6fa9 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -116,7 +116,7 @@ <h1>Scintilla Documentation</h1> - <p>Last edited 17 April 2018 NH</p> + <p>Last edited 6 June 2018 NH</p> <p>There is <a class="jump" href="Design.html">an overview of the internal design of Scintilla</a>.<br /> @@ -6402,8 +6402,10 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <tr> <td align="left"><code>SC_WRAPINDENT_FIXED</code></td> <td align="center">0</td> - <td>Wrapped sublines aligned to left of window plus amount set by - <a class="seealso" href="#SCI_SETWRAPSTARTINDENT">SCI_SETWRAPSTARTINDENT</a></td> + <td> + Wrapped sublines aligned to left of window plus amount set by + <a class="seealso" href="#SCI_SETWRAPSTARTINDENT">SCI_SETWRAPSTARTINDENT</a> + </td> </tr> <tr> @@ -6417,6 +6419,12 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <td align="center">2</td> <td>Wrapped sublines are aligned to first subline indent plus one more level of indentation</td> </tr> + + <tr> + <td align="left"><code>SC_WRAPINDENT_DEEPINDENT</code></td> + <td align="center">3</td> + <td>Wrapped sublines are aligned to first subline indent plus two more levels of indentation</td> + </tr> </tbody> </table> |