[geany/geany] 0347e7: Add the geany_ prefix to all parser files

Jiří Techet git-noreply at xxxxx
Sun Feb 7 21:31:53 UTC 2021


Branch:      refs/heads/master
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Thu, 19 Nov 2020 10:30:28 UTC
Commit:      0347e7411661401f7ef82c26c646c5123fba6653
             https://github.com/geany/geany/commit/0347e7411661401f7ef82c26c646c5123fba6653

Log Message:
-----------
Add the geany_ prefix to all parser files

The geany_ prefix is meant to indicate that the parser either has a
geany-specific implementation or that there are some things in the parser
which should be committed upstream. Once a parser is fully synced
with the upstream version, we can drop the geany_ prefix. This helps us
know which parsers are synced (and for which we can just copy the
uctags version) and where we still have some work to do.

In this initial commit, add the geany_ prefix everywhere - some parsers
are already fully synced and the geany_ prefix can be dropped when we
update to the up-to-date uctags version.


Modified Paths:
--------------
    ctags/Makefile.am
    ctags/parsers/geany_abaqus.c
    ctags/parsers/geany_abc.c
    ctags/parsers/geany_asciidoc.c
    ctags/parsers/geany_asm.c
    ctags/parsers/geany_basic.c
    ctags/parsers/geany_bibtex.c
    ctags/parsers/geany_c.c
    ctags/parsers/geany_cobol.c
    ctags/parsers/geany_css.c
    ctags/parsers/geany_diff.c
    ctags/parsers/geany_docbook.c
    ctags/parsers/geany_erlang.c
    ctags/parsers/geany_flex.c
    ctags/parsers/geany_fortran.c
    ctags/parsers/geany_go.c
    ctags/parsers/geany_haskell.c
    ctags/parsers/geany_haxe.c
    ctags/parsers/geany_html.c
    ctags/parsers/geany_iniconf.c
    ctags/parsers/geany_jscript.c
    ctags/parsers/geany_json.c
    ctags/parsers/geany_lcpp.c
    ctags/parsers/geany_lcpp.h
    ctags/parsers/geany_lua.c
    ctags/parsers/geany_make.c
    ctags/parsers/geany_markdown.c
    ctags/parsers/geany_matlab.c
    ctags/parsers/geany_nsis.c
    ctags/parsers/geany_objc.c
    ctags/parsers/geany_pascal.c
    ctags/parsers/geany_perl.c
    ctags/parsers/geany_php.c
    ctags/parsers/geany_powershell.c
    ctags/parsers/geany_python.c
    ctags/parsers/geany_r.c
    ctags/parsers/geany_rst.c
    ctags/parsers/geany_ruby.c
    ctags/parsers/geany_rust.c
    ctags/parsers/geany_sh.c
    ctags/parsers/geany_sql.c
    ctags/parsers/geany_tcl.c
    ctags/parsers/geany_tex.c
    ctags/parsers/geany_txt2tags.c
    ctags/parsers/geany_verilog.c
    ctags/parsers/geany_vhdl.c

Modified: ctags/Makefile.am
90 lines changed, 45 insertions(+), 45 deletions(-)
===================================================================
@@ -10,51 +10,51 @@ AM_CFLAGS = \
 noinst_LTLIBRARIES = libctags.la
 
 parsers = \
-	parsers/abaqus.c \
-	parsers/abc.c \
-	parsers/asciidoc.c \
-	parsers/asm.c \
-	parsers/basic.c \
-	parsers/bibtex.c \
-	parsers/c.c \
-	parsers/cobol.c \
-	parsers/iniconf.c \
-	parsers/css.c \
-	parsers/diff.c \
-	parsers/docbook.c \
-	parsers/erlang.c \
-	parsers/flex.c \
-	parsers/fortran.c \
-	parsers/go.c \
-	parsers/haskell.c \
-	parsers/haxe.c \
-	parsers/html.c \
-	parsers/jscript.c \
-	parsers/json.c \
-	parsers/lcpp.c \
-	parsers/lcpp.h \
-	parsers/lua.c \
-	parsers/make.c \
-	parsers/markdown.c \
-	parsers/matlab.c \
-	parsers/nsis.c \
-	parsers/objc.c \
-	parsers/pascal.c \
-	parsers/perl.c \
-	parsers/php.c \
-	parsers/powershell.c \
-	parsers/python.c \
-	parsers/r.c \
-	parsers/rst.c \
-	parsers/ruby.c \
-	parsers/rust.c \
-	parsers/sh.c \
-	parsers/sql.c \
-	parsers/tcl.c \
-	parsers/tex.c \
-	parsers/txt2tags.c \
-	parsers/verilog.c \
-	parsers/vhdl.c
+	parsers/geany_abaqus.c \
+	parsers/geany_abc.c \
+	parsers/geany_asciidoc.c \
+	parsers/geany_asm.c \
+	parsers/geany_basic.c \
+	parsers/geany_bibtex.c \
+	parsers/geany_c.c \
+	parsers/geany_cobol.c \
+	parsers/geany_iniconf.c \
+	parsers/geany_css.c \
+	parsers/geany_diff.c \
+	parsers/geany_docbook.c \
+	parsers/geany_erlang.c \
+	parsers/geany_flex.c \
+	parsers/geany_fortran.c \
+	parsers/geany_go.c \
+	parsers/geany_haskell.c \
+	parsers/geany_haxe.c \
+	parsers/geany_html.c \
+	parsers/geany_jscript.c \
+	parsers/geany_json.c \
+	parsers/geany_lcpp.c \
+	parsers/geany_lcpp.h \
+	parsers/geany_lua.c \
+	parsers/geany_make.c \
+	parsers/geany_markdown.c \
+	parsers/geany_matlab.c \
+	parsers/geany_nsis.c \
+	parsers/geany_objc.c \
+	parsers/geany_pascal.c \
+	parsers/geany_perl.c \
+	parsers/geany_php.c \
+	parsers/geany_powershell.c \
+	parsers/geany_python.c \
+	parsers/geany_r.c \
+	parsers/geany_rst.c \
+	parsers/geany_ruby.c \
+	parsers/geany_rust.c \
+	parsers/geany_sh.c \
+	parsers/geany_sql.c \
+	parsers/geany_tcl.c \
+	parsers/geany_tex.c \
+	parsers/geany_txt2tags.c \
+	parsers/geany_verilog.c \
+	parsers/geany_vhdl.c
 
 # skip cmd.c and mini-geany.c which define main()
 libctags_la_SOURCES = \


Modified: ctags/parsers/geany_abaqus.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_abc.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_asciidoc.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_asm.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_basic.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_bibtex.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_c.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -19,7 +19,7 @@
 #include "debug.h"
 #include "mio.h"
 #include "entry.h"
-#include "lcpp.h"
+#include "geany_lcpp.h"
 #include "keyword.h"
 #include "options.h"
 #include "parse.h"


Modified: ctags/parsers/geany_cobol.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_css.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_diff.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_docbook.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_erlang.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_flex.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_fortran.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_go.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_haskell.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_haxe.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_html.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_iniconf.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_jscript.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_json.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_lcpp.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -17,7 +17,7 @@
 
 #include "debug.h"
 #include "entry.h"
-#include "lcpp.h"
+#include "geany_lcpp.h"
 #include "kind.h"
 #include "options_p.h"
 #include "read.h"


Modified: ctags/parsers/geany_lcpp.h
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_lua.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_make.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_markdown.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_matlab.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_nsis.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_objc.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_pascal.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_perl.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_php.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_powershell.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_python.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_r.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_rst.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_ruby.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_rust.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_sh.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_sql.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_tcl.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_tex.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_txt2tags.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online


Modified: ctags/parsers/geany_verilog.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -27,7 +27,7 @@
 #include "parse.h"
 #include "read.h"
 #include "vstring.h"
-#include "lcpp.h"
+#include "geany_lcpp.h"
 #include "routines.h"
 #include "xtag.h"
 


Modified: ctags/parsers/geany_vhdl.c
0 lines changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online



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


More information about the Commits mailing list