bug-global
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] make suffix list of include file configurable


From: Shigio Yamaguchi
Subject: Re: [PATCH] make suffix list of include file configurable
Date: Sat, 02 Oct 2004 17:13:55 +0900

I have modified the source code like this:

o Rename htags_langmap to langmap.
o Keep the langmap variable undocumented.

Index: htags/htags.c
===================================================================
RCS file: /cvsroot/global/global/htags/htags.c,v
retrieving revision 1.21
diff -r1.21 htags.c
202c202
< static char *htags_langmap = 
"c:.c,yacc:.y,asm:.s.S,java:.java,cpp:.c++.cc.cpp.cxx.h.hxx.hpp.C.H,php:.php.php3.phtml";
---
> static char *langmap = 
> "c:.c,yacc:.y,asm:.s.S,java:.java,cpp:.c++.cc.cpp.cxx.h.hxx.hpp.C.H,php:.php.php3.phtml";
1199c1199
<       if (getconfs("htags_langmap", sb)) {
---
>       if (getconfs("langmap", sb)) {
1203c1203
<               htags_langmap = p;
---
>               langmap = p;
1369c1369
<       setup_langmap(htags_langmap);
---
>       setup_langmap(langmap);
Index: htags/manual.in
===================================================================
RCS file: /cvsroot/global/global/htags/manual.in,v
retrieving revision 1.62
diff -r1.62 manual.in
259,262c259,267
<       @address@hidden(comma separated list)}
<               Language mapping. Each comma-separated map consists of
<               the language name, a colon, and a list of file extensions.
<               Default mapping is 
'c:.c,yacc:.y,asm:.s.S,java:.java,cpp:.c++.cc.cpp.cxx.h.hxx.hpp.C.H,php:.php.php3.phtml'.
---
> #
> #     2004/10/2
> #     We keep the langmap variable undocumented until being supported
> #     by gtags(1) not to cause a useless mess to the user,
> #
> #     @address@hidden(comma separated list)}
> #             Language mapping. Each comma-separated map consists of
> #             the language name, a colon, and a list of file extensions.
> #             Default mapping is 
> 'c:.c,yacc:.y,asm:.s.S,java:.java,cpp:.c++.cc.cpp.cxx.h.hxx.hpp.C.H,php:.php.php3.phtml'.
--
Shigio Yamaguchi <address@hidden> - Tama Communications Corporation
PGP fingerprint: D1CB 0B89 B346 4AB6 5663  C4B6 3CA5 BBB3 57BE DDA3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]