Skip to content

Commit

Permalink
Remove ctags.c and move its content to routines.c, main.c and options.c
Browse files Browse the repository at this point in the history
This is mostly just moving code with just some minor modifications:
- removal of code of unsupported platforms (VAX, OS2, etc.)
- syncing includes/headers of affected files with uctags
- removal of some functions we don't need in Geany and whose movement
  would require additional changes (those will get added back when
  doing final sync with uctags)
- minor whitespace syncs
  • Loading branch information
techee committed Aug 2, 2016
1 parent d440a81 commit ea72ecc
Show file tree
Hide file tree
Showing 28 changed files with 1,210 additions and 1,603 deletions.
3 changes: 2 additions & 1 deletion ctags/Makefile.am
Expand Up @@ -55,7 +55,6 @@ parsers = \
libctags_la_SOURCES = \
main/args.c \
main/args.h \
main/ctags.c \
main/ctags.h \
main/debug.h \
main/entry.c \
Expand All @@ -67,6 +66,7 @@ libctags_la_SOURCES = \
main/lcpp.c \
main/lcpp.h \
main/lregex.c \
main/main.c \
main/main.h \
main/mio.c \
main/mio.h \
Expand All @@ -79,6 +79,7 @@ libctags_la_SOURCES = \
main/parsers.h \
main/read.c \
main/read.h \
main/routines.c \
main/routines.h \
main/sort.c \
main/sort.h \
Expand Down
2 changes: 1 addition & 1 deletion ctags/main/args.c
Expand Up @@ -18,7 +18,7 @@
#include <ctype.h>

#include "args.h"
#include "main.h"
#include "routines.h"

/*
* FUNCTION DEFINITIONS
Expand Down

0 comments on commit ea72ecc

Please sign in to comment.