[geany/geany-plugins] 9491cc: Merge pull request #393 from b4n/spellcheck/include-style

Colomban Wendling git-noreply at xxxxx
Tue Mar 8 12:28:37 UTC 2016


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Tue, 08 Mar 2016 12:28:37 UTC
Commit:      9491cc14f8d4c831beaad0916ac81fa3ca5ca977
             https://github.com/geany/geany-plugins/commit/9491cc14f8d4c831beaad0916ac81fa3ca5ca977

Log Message:
-----------
Merge pull request #393 from b4n/spellcheck/include-style

spellcheck: Use <> to include Geany headers


Modified Paths:
--------------
    spellcheck/src/gui.c
    spellcheck/src/scplugin.c
    spellcheck/src/speller.c

Modified: spellcheck/src/gui.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -26,7 +26,7 @@
 # include "config.h"
 #endif
 
-#include "geanyplugin.h"
+#include <geanyplugin.h>
 
 #include <ctype.h>
 #include <string.h>


Modified: spellcheck/src/scplugin.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -27,7 +27,7 @@
 # include "config.h"
 #endif
 
-#include "geanyplugin.h"
+#include <geanyplugin.h>
 
 
 #include "scplugin.h"


Modified: spellcheck/src/speller.c
5 lines changed, 2 insertions(+), 3 deletions(-)
===================================================================
@@ -26,9 +26,8 @@
 # include "config.h"
 #endif
 
-#include "geanyplugin.h"
-
-#include "scintilla/SciLexer.h"
+#include <geanyplugin.h>
+#include <scintilla/SciLexer.h>
 
 #include <string.h>
 #include <ctype.h>



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list