From 95d767f873729db6a2feadac358a4a5d7a3e564c Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Sat, 28 Jul 2012 00:29:27 +0200 Subject: [PATCH] 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. --- src/sciwrappers.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/sciwrappers.c b/src/sciwrappers.c index 30b1572a..1ec7c500 100644 --- a/src/sciwrappers.c +++ b/src/sciwrappers.c @@ -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);