Skip to content

Commit 85fa80a

Browse files
committed
AutoIt: set the parser-version 1.0
The change in the last commit for the parser is not small. So I increment the current, and set 0 to age. Signed-off-by: Masatake YAMATO <[email protected]>
1 parent 4b3a188 commit 85fa80a

File tree

5 files changed

+70
-0
lines changed

5 files changed

+70
-0
lines changed

docs/man-pages.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Man pages
1717
ctags-faq(7) <man/ctags-faq.7.rst>
1818

1919
ctags-lang-asm(7) <man/ctags-lang-asm.7.rst>
20+
ctags-lang-autoit(7) <man/ctags-lang-autoit.7.rst>
2021
ctags-lang-elm(7) <man/ctags-lang-elm.7.rst>
2122
ctags-lang-fortran(7) <man/ctags-lang-fortran.7.rst>
2223
ctags-lang-gdscript(7) <man/ctags-lang-gdscript.7.rst>

docs/man/ctags-lang-autoit.7.rst

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.. _ctags-lang-autoit(7):
2+
3+
==============================================================
4+
ctags-lang-autoit
5+
==============================================================
6+
7+
Random notes about tagging AutoIt source code with Universal Ctags
8+
9+
:Version: 6.0.0
10+
:Manual group: Universal Ctags
11+
:Manual section: 7
12+
13+
SYNOPSIS
14+
--------
15+
| **ctags** ... --languages=+AutoIt ...
16+
| **ctags** ... --language-force=AutoIt ...
17+
| **ctags** ... --map-AutoIt=+.au3 ...
18+
19+
DESCRIPTION
20+
-----------
21+
This man page gathers random notes about tagging AutoIt source code.
22+
23+
VERSIONS
24+
--------
25+
26+
Change since "0.0"
27+
~~~~~~~~~~~~~~~~~~
28+
29+
* Drop ``$`` from tags for variables names.
30+
31+
SEE ALSO
32+
--------
33+
:ref:`ctags(1) <ctags(1)>`

man/GNUmakefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ GEN_IN_MAN_FILES = \
2828
ctags-faq.7 \
2929
\
3030
ctags-lang-asm.7 \
31+
ctags-lang-autoit.7 \
3132
ctags-lang-elm.7 \
3233
ctags-lang-fortran.7 \
3334
ctags-lang-gdscript.7 \

man/ctags-lang-autoit.7.rst.in

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.. _ctags-lang-autoit(7):
2+
3+
==============================================================
4+
ctags-lang-autoit
5+
==============================================================
6+
---------------------------------------------------------------------
7+
Random notes about tagging AutoIt source code with Universal Ctags
8+
---------------------------------------------------------------------
9+
:Version: @VERSION@
10+
:Manual group: Universal Ctags
11+
:Manual section: 7
12+
13+
SYNOPSIS
14+
--------
15+
| **@CTAGS_NAME_EXECUTABLE@** ... --languages=+AutoIt ...
16+
| **@CTAGS_NAME_EXECUTABLE@** ... --language-force=AutoIt ...
17+
| **@CTAGS_NAME_EXECUTABLE@** ... --map-AutoIt=+.au3 ...
18+
19+
DESCRIPTION
20+
-----------
21+
This man page gathers random notes about tagging AutoIt source code.
22+
23+
VERSIONS
24+
--------
25+
26+
Change since "0.0"
27+
~~~~~~~~~~~~~~~~~~
28+
29+
* Drop ``$`` from tags for variables names.
30+
31+
SEE ALSO
32+
--------
33+
ctags(1)

parsers/autoit.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,5 +313,7 @@ parserDefinition *AutoItParser (void)
313313
def->extensions = extensions;
314314
def->parser = findAutoItTags;
315315
def->useCork = CORK_QUEUE;
316+
def->versionCurrent = 1;
317+
def->versionAge = 0;
316318
return def;
317319
}

0 commit comments

Comments
 (0)