[geany/geany] 359c60: Rename get.c/h to lcpp.c/h
Jiří Techet
git-noreply at xxxxx
Sat Sep 10 07:26:08 UTC 2016
Branch: refs/heads/master
Author: Jiří Techet <techet at gmail.com>
Committer: Jiří Techet <techet at gmail.com>
Date: Sun, 31 Jul 2016 19:00:58 UTC
Commit: 359c60b81b8d80af4551f638b2b8c894066cd82c
https://github.com/geany/geany/commit/359c60b81b8d80af4551f638b2b8c894066cd82c
Log Message:
-----------
Rename get.c/h to lcpp.c/h
Modified Paths:
--------------
ctags/Makefile.am
ctags/main/lcpp.c
ctags/main/lcpp.h
ctags/parsers/c.c
ctags/parsers/verilog.c
Modified: ctags/Makefile.am
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -61,11 +61,11 @@ libctags_la_SOURCES = \
main/entry.c \
main/entry.h \
main/general.h \
- main/get.c \
- main/get.h \
main/keyword.c \
main/keyword.h \
main/kind.h \
+ main/lcpp.c \
+ main/lcpp.h \
main/lregex.c \
main/main.h \
main/mio.c \
Modified: ctags/main/lcpp.c
8 lines changed, 5 insertions(+), 3 deletions(-)
===================================================================
@@ -2,9 +2,9 @@
* Copyright (c) 1996-2002, Darren Hiebert
*
* This source code is released for free distribution under the terms of the
-* GNU General Public License.
+* GNU General Public License version 2 or (at your option) any later version.
*
-* This module contains the high level source read functions (preprocessor
+* This module contains the high level input read functions (preprocessor
* directives are handled within this level).
*/
@@ -16,8 +16,10 @@
#include <string.h>
#include <glib.h>
+#include "debug.h"
#include "entry.h"
-#include "get.h"
+#include "lcpp.h"
+#include "kind.h"
#include "options.h"
#include "read.h"
#include "vstring.h"
Modified: ctags/main/lcpp.h
8 lines changed, 4 insertions(+), 4 deletions(-)
===================================================================
@@ -2,12 +2,12 @@
* Copyright (c) 1998-2002, Darren Hiebert
*
* This source code is released for free distribution under the terms of the
-* GNU General Public License.
+* GNU General Public License version 2 or (at your option) any later version.
*
* External interface to get.c
*/
-#ifndef _GET_H
-#define _GET_H
+#ifndef CTAGS_MAIN_GET_H
+#define CTAGS_MAIN_GET_H
/*
* INCLUDE FILES
@@ -47,6 +47,6 @@ extern int skipOverCComment (void);
extern char *getArglistFromFilePos(MIOPos startPosition, const char *tokenName);
extern char *getArglistFromStr(char *buf, const char *name);
-#endif /* _GET_H */
+#endif /* CTAGS_MAIN_GET_H */
/* vi:set tabstop=4 shiftwidth=4: */
Modified: ctags/parsers/c.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -19,7 +19,7 @@
#include "debug.h"
#include "mio.h"
#include "entry.h"
-#include "get.h"
+#include "lcpp.h"
#include "keyword.h"
#include "main.h"
#include "options.h"
Modified: ctags/parsers/verilog.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -27,7 +27,7 @@
#include "parse.h"
#include "read.h"
#include "vstring.h"
-#include "get.h"
+#include "lcpp.h"
#include "routines.h"
#include "xtag.h"
--------------
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