bug-global
[Top][All Lists]
Advanced

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

Re: [PATCH] add option --no-map-file and configuration variable no_map_


From: Shigio Yamaguchi
Subject: Re: [PATCH] add option --no-map-file and configuration variable no_map_file
Date: Sat, 24 May 2003 23:54:44 +0900

Committed. Thank you.

> Since I do not use MAP file, I want to omit making it.
> 
> 
> Index: htags/htags.in
> ===================================================================
> RCS file: /cvsroot/global/global/htags/htags.in,v
> retrieving revision 1.122
> diff -u -r1.122 htags.in
> --- htags/htags.in    21 May 2003 08:46:49 -0000      1.122
> +++ htags/htags.in    24 May 2003 14:04:53 -0000
> @@ -81,6 +81,7 @@
>  $'cgi = 1;                                   # 1: make cgi-bin/
>  $'definition_header='after';                 # {no|after|before}
>  $'other_files = 0;                           # 1: list other files
> +$'map_file = 1;
>  #
>  # tag
>  #
> @@ -221,6 +222,9 @@
>  if (&'getconf('no_javascript')) {
>       $'use_javascript = 0;
>  }
> +if (&'getconf('no_map_file')) {
> +     $'map_file = 0;
> +}
>  if ($var1 = &'getconf('show_position')) {
>       $'show_position = $var1;
>  }
> @@ -609,7 +613,6 @@
>  $'aflag = $'cflag = $'Dflag = $'fflag = $'Fflag = $'gflag = $'nflag = $'sfla
g = $'Sflag = $'vflag = $'wflag = '';
>  $show_version = 0;
>  $show_help = 0;
> -$map_file = 1;
>  $include_caution = '';
>  $action_value = '';
>  $id_value = '';
> @@ -652,6 +655,8 @@
>               ;               # --gtagslabel is estimated only once.
>       } elsif ($opt =~ /^--gtagslabel$/) {
>               shift;          # --gtagslabel is estimated only once.
> +     } elsif ($opt =~ /^--no-map-file$/) {
> +             $'map_file = 0;
>       } elsif ($opt =~ /^--line-number$/) {
>               $'nflag = 'n';
>       } elsif ($opt =~ /^--other$/) {
> Index: htags/manual.in
> ===================================================================
> RCS file: /cvsroot/global/global/htags/manual.in,v
> retrieving revision 1.46
> diff -u -r1.46 manual.in
> --- htags/manual.in   22 May 2003 04:54:08 -0000      1.46
> +++ htags/manual.in   24 May 2003 14:04:53 -0000
> @@ -88,6 +88,8 @@
>       @address@hidden
>               Doesn't generate javascript code.
>               By default, @name{htags} generates javascript code.
> +     @address@hidden
> +             Doesn't generate @file{MAP} file. By default, @name{htags} gene
rates it.
>       @address@hidden, @option{--other}}
>               Pick up not only source files but also other files except for
>               binary files.
> @@ -221,6 +223,8 @@
>               Suffix for normal html file. The default is 'html'.
>       @address@hidden(boolean)}
>               Doesn't generate javascript code. By default, @name{htags} gene
rates javascript code.
> +     @address@hidden(boolean)}
> +             Doesn't generate @file{MAP} file. The default is false.
>       @address@hidden(string)}
>               Suffix for compressed html file. The default is 'ghtml'.
>       @address@hidden(string)}
> 
> ----
> Hideki IWAMOTO  address@hidden
--
Shigio Yamaguchi <address@hidden> - Tama Communications Corporation
Spare mail address: <address@hidden>
PGP fingerprint: D1CB 0B89 B346 4AB6 5663  C4B6 3CA5 BBB3 57BE DDA3




reply via email to

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