Document sci_get_lexer()

This function is part of the plugin API but missed its documentation,
leading to it not appearing in the generated API documentation.
This commit is contained in:
Colomban Wendling 2012-07-28 00:29:27 +02:00
parent f4eb89cd7d
commit 95d767f873

View File

@ -523,6 +523,10 @@ gint sci_get_length(ScintillaObject *sci)
}
/** Gets the currently used lexer
* @param sci Scintilla widget.
* @returns The lexer ID
*/
gint sci_get_lexer(ScintillaObject *sci)
{
return (gint) SSM(sci, SCI_GETLEXER, 0, 0);