[geany/geany] 99a993: useCork is now a bit field

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


Branch:      refs/heads/master
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Wed, 18 Nov 2020 23:13:15 UTC
Commit:      99a993fbfed30075610a30432ffe5ae1c3ae2fc3
             https://github.com/geany/geany/commit/99a993fbfed30075610a30432ffe5ae1c3ae2fc3

Log Message:
-----------
useCork is now a bit field

See 6b1a862e526d5017f9f212a321f59d67c859d521 upstream.


Modified Paths:
--------------
    ctags/parsers/asciidoc.c
    ctags/parsers/python.c
    ctags/parsers/rst.c
    ctags/parsers/ruby.c
    ctags/parsers/txt2tags.c

Modified: ctags/parsers/asciidoc.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -406,7 +406,7 @@ extern parserDefinition* AsciidocParser (void)
 	def->extensions = extensions;
 	def->parser = findAsciidocTags;
 	/* do we even need to use Cork? */
-	def->useCork = true;
+	def->useCork = CORK_QUEUE;
 
 	return def;
 }


Modified: ctags/parsers/python.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -857,6 +857,6 @@ extern parserDefinition *PythonParser (void)
 	def->kindCount = ARRAY_SIZE (PythonKinds);
 	def->extensions = extensions;
 	def->parser = findPythonTags;
-	def->useCork = true;
+	def->useCork = CORK_QUEUE;
 	return def;
 }


Modified: ctags/parsers/rst.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -373,7 +373,7 @@ extern parserDefinition* RstParser (void)
 	def->fieldTable = RstFields;
 	def->fieldCount = ARRAY_SIZE (RstFields);
 
-	def->useCork = true;
+	def->useCork = CORK_QUEUE;
 
 	return def;
 }


Modified: ctags/parsers/ruby.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -559,6 +559,6 @@ extern parserDefinition* RubyParser (void)
 	def->kindCount  = ARRAY_SIZE (RubyKinds);
 	def->extensions = extensions;
 	def->parser     = findRubyTags;
-	def->useCork    = true;
+	def->useCork    = CORK_QUEUE;
 	return def;
 }


Modified: ctags/parsers/txt2tags.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -188,7 +188,7 @@ extern parserDefinition* Txt2tagsParser (void)
 	def->patterns = patterns;
 	def->extensions = extensions;
 	def->parser = findTxt2tagsTags;
-	def->useCork = true;
+	def->useCork = CORK_QUEUE;
 	return def;
 }
 



--------------
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