[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] omit creation of directory HTML/{D,R,Y}, if option --dynamic
From: |
Shigio Yamaguchi |
Subject: |
Re: [PATCH] omit creation of directory HTML/{D,R,Y}, if option --dynamic is specified, |
Date: |
Fri, 21 Mar 2003 22:51:35 +0900 |
Committed. Thank you.
> Index: htags/htags.in
> ===================================================================
> RCS file: /cvsroot/global/global/htags/htags.in,v
> retrieving revision 1.105
> diff -u -r1.105 htags.in
> --- htags/htags.in 21 Mar 2003 11:45:49 -0000 1.105
> +++ htags/htags.in 21 Mar 2003 12:08:23 -0000
> @@ -345,8 +345,11 @@
> $'INCS = 'I'; # include file directory.
> $'SYMS = 'Y'; # symbols directory.
> sub get_dirlist {
> - local(@dir) = (files, defines, $'SRCS, $'INCS, $'DEFS, ,$'REFS);
> - push(@dir, $'SYMS) if ($'symbol);
> + local(@dir) = (files, defines, $'SRCS, $'INCS);
> + if (!$'dynamic) {
> + push(@dir, $'DEFS, $'REFS);
> + push(@dir, $'SYMS) if ($'symbol);
> + }
> @dir;
> }
> sub get_taglist {
>
> ----
> Hideki IWAMOTO address@hidden
>
>
> _______________________________________________
> Bug-global mailing list
> address@hidden
> http://mail.gnu.org/mailman/listinfo/bug-global
>
>
--
Shigio Yamaguchi <address@hidden> - Tama Communications Corporation
PGP fingerprint: D1CB 0B89 B346 4AB6 5663 C4B6 3CA5 BBB3 57BE DDA3
- [PATCH] omit creation of directory HTML/{D,R,Y}, if option --dynamic is specified,, Hideki IWAMOTO, 2003/03/21
- Re: [PATCH] omit creation of directory HTML/{D,R,Y}, if option --dynamic is specified,,
Shigio Yamaguchi <=