29 Commits

Author SHA1 Message Date
Jiří Techet
359c60b81b Rename get.c/h to lcpp.c/h 2016-07-31 21:00:58 +02:00
Jiří Techet
0ed5c16b46 Rename tagEntryInfo.extensionFields.scope
This requires moving kindOption into a separate file because of circular
include dependency. Also eliminate now redundant tagLetter() function
in c.c.
2016-07-30 16:04:06 +02:00
Jiří Techet
cb1c15483b Eliminate some trivial diffs in read.c
Mostly indentation and comment stuff. We can replace the implementation
of readSourceLine() with readLineFromBypass() as it's never used in Geany.
2016-07-30 13:49:53 +02:00
Jiří Techet
781738fe10 Replace fileGetc() with getcFromInputFile() also in comments 2016-07-30 13:11:45 +02:00
Jiří Techet
ba2209e4a6 Rename readLine() to readLineRaw()
Plus make some minor changes in its implementation to match uctags.
2016-07-30 13:10:10 +02:00
Jiří Techet
bbbbb309ba Rename fileReadLine() to readLineFromInputFile() 2016-07-30 12:57:22 +02:00
Jiří Techet
bf2b64239a Rename fileGetNthPrevC() to getNthPrevCFromInputFile() 2016-07-30 12:51:24 +02:00
Jiří Techet
61278d4031 Rename fileSkipToCharacter() to skipToCharacterInInputFile() 2016-07-30 12:50:57 +02:00
Jiří Techet
357e4fe1bd Rename fileUngetc() to ungetcToInputFile() 2016-07-30 12:31:59 +02:00
Jiří Techet
acdc44074f Rename fileGetc() to getcFromInputFile() 2016-07-30 12:23:42 +02:00
Jiří Techet
1e36d2367e Add separate "input" entry to sInputFile and use it
This patch basically just replaces

sInputFile.name -> sInputFile.input.name
sInputFile.lineNumber -> sInputFile.input.lineNumber

plus some minor related stuff.
2016-07-30 11:53:26 +02:00
Jiří Techet
7ac17b662f Eliminate readNextChar() and pushBackChar() 2016-07-30 00:40:37 +02:00
Jiří Techet
3dd1fb4853 Rename "mio" member of sInputFile to "fp" 2016-07-30 00:32:59 +02:00
Jiří Techet
ae8dc545ce Add keywordTable to parserDefinition and use a common way to initialize keywords 2016-07-29 22:50:11 +02:00
Jiří Techet
6bc5797987 Don't use combination of tabs and spaces for indentation
This was done using Geany's "replace tabs with spaces" followed by
"replace spaces with tabs" plus a lot of manual work because the
indentation was inconsistent in many cases.
2016-07-29 22:03:56 +02:00
Jiří Techet
bf0702e2ec Use uctags implementation of keyword.c/h
Basically just the stuff I added to uctags to improve hashing of keywords.

This patch drops some extra stuff from uctags we don't need at the moment
and which would require changes in other files.
2016-07-29 16:55:07 +02:00
Jiří Techet
282ed7def7 Define ARRAY_SIZE() and use it instead of KIND_COUNT() 2016-07-28 23:56:05 +02:00
Jiří Techet
001c7f65e4 Move keywordTable definition to parse.h and use it for all parsers 2016-07-28 23:56:05 +02:00
Jiří Techet
7b9d0dd83c Make parser includes closer to uctags and sync parser license header
Adds (currently empty) debug.h, routines.h and xtag.h and uses them at the
same places like uctags.
2016-07-28 23:55:56 +02:00
Jiří Techet
f791e91e18 ctags: Rename Geany-specific tagEntryInfo::arglist to upstream's ::signature
Based on patch from Colomban Wendling.
2016-07-28 21:06:59 +02:00
Jiří Techet
7068e7c892 ctags: Remove useless Geany-specific tagEntryInfo::type field
Original patch from Colomban Wendling, only converted to apply to the new
ctags location in the source tree.
2016-07-28 21:02:40 +02:00
Jiří Techet
ffa09b0ae2 ctags: Remove unused Geany-specific tagEntryInfo fields
Original patch from Colomban Wendling, only converted to apply to the new
ctags location in the source tree.
2016-07-28 20:57:03 +02:00
Jiří Techet
af3ad0b6f0 Rename variable to avoid warning about variable being shadowed 2016-07-23 00:36:04 +02:00
Jiří Techet
f95656cbe8 Remove makefile.win32 based build system
No more needed using MSYS2.
2016-07-21 13:21:32 +02:00
Jiří Techet
3b4d9fadf8 Rename js.c to jscript.c to match universal-ctags 2016-07-21 13:14:21 +02:00
Jiří Techet
470d99ee94 Update various comments mentioning tagmanager/src 2016-07-21 13:14:21 +02:00
Jiří Techet
eb2865a819 Separate ctags into parsers and main sources 2016-07-21 13:08:42 +02:00
Jiří Techet
18b7527fcc Use the single-file implementation of MIO from universal-ctags
The version of MIO corresponds to commit 509a47dbc in universal-ctags
which contains just minimal changes mostly related to changing MIO from
a library into a single ctags source file:

- replaced the glib types with ordinary C types
- removed the "virtual" calls and replaced them with simple if/else
- made the implementation in a single file
- reformatted the library to more or less match universal-ctags style
- removed the MIO_FORCE_ANSI ifdef as it included some glib file and
  we don't really need it
- added mio_flush() - of course makes sense just for the file backend
  (calls fflush())
- made mio_free() return error code from fclose()
- changed mio_new_fp() to return NULL when the passed FILE is NULL
  (simplifies logic at one place in ctags and makes sense IMO)
2016-07-21 13:08:42 +02:00
Jiří Techet
3d2e7d4fca Move TM into src
Move the tag manager implementation to src as it really is part of Geany
sources and start making the ctags directory structure similar to
the universal-ctags one.

In principle, the patch does

mv tagmanager/src src/tagmanager
mv tagmanager/ctags tagmanager/main
mv tagmanager ctags

plus corresponding Makefile.am and configure.ac updates.
2016-07-21 13:08:42 +02:00