diff options
| author | Eli Zaretskii | 2016-03-10 17:27:26 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-03-10 17:27:26 +0200 |
| commit | a589e9aed5255fb1ebfb38fa4b3c9df5f6ef7448 (patch) | |
| tree | c48c023858e992968ce74a7cc8bd8e3aeea3ffe3 | |
| parent | 72c7438c4c6ee0d24405636cde4b18c32034a634 (diff) | |
| download | emacs-a589e9aed5255fb1ebfb38fa4b3c9df5f6ef7448.tar.gz emacs-a589e9aed5255fb1ebfb38fa4b3c9df5f6ef7448.zip | |
By default, etags produces unqualified Perl tag names
* lib-src/etags.c (Perl_functions): Produce unqualified names,
unless -Q was specified.
(print_help): Update the description of -Q.
* doc/man/etags.1: Update the documentation of -Q.
* test/etags/ETAGS.good_1:
* test/etags/ETAGS.good_2:
* test/etags/ETAGS.good_3:
* test/etags/ETAGS.good_4:
* test/etags/ETAGS.good_5:
* test/etags/CTAGS.good: Adapt the expected test results to the
changed Perl functionality.
| -rw-r--r-- | doc/man/etags.1 | 6 | ||||
| -rw-r--r-- | lib-src/etags.c | 27 | ||||
| -rw-r--r-- | test/etags/CTAGS.good | 42 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_1 | 48 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_2 | 48 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_3 | 48 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_4 | 48 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_5 | 48 |
8 files changed, 165 insertions, 150 deletions
diff --git a/doc/man/etags.1 b/doc/man/etags.1 index fc247f758a3..83b970f906c 100644 --- a/doc/man/etags.1 +++ b/doc/man/etags.1 | |||
| @@ -145,10 +145,10 @@ May be used (only once) in place of a file name on the command line. | |||
| 145 | \fBetags\fP will read from standard input and mark the produced tags | 145 | \fBetags\fP will read from standard input and mark the produced tags |
| 146 | as belonging to the file \fBFILE\fP. | 146 | as belonging to the file \fBFILE\fP. |
| 147 | .TP | 147 | .TP |
| 148 | \fB\-\-class\-qualify\fP | 148 | \fB \-Q, \-\-class\-qualify\fP |
| 149 | Qualify tag names with their class name in C++, ObjC, and Java. | 149 | Qualify tag names with their class name in C++, ObjC, Java, and Perl. |
| 150 | This produces tag names of the form \fIclass\fP\fB::\fP\fImember\fP | 150 | This produces tag names of the form \fIclass\fP\fB::\fP\fImember\fP |
| 151 | for C++, | 151 | for C++ and Perl, |
| 152 | \fIclass\fP\fB(\fP\fIcategory\fP\fB)\fP for Objective C, and \fIclass\fP\fB.\fP\fImember\fP for Java. | 152 | \fIclass\fP\fB(\fP\fIcategory\fP\fB)\fP for Objective C, and \fIclass\fP\fB.\fP\fImember\fP for Java. |
| 153 | For Objective C, this also produces class methods qualified with | 153 | For Objective C, this also produces class methods qualified with |
| 154 | their arguments, as in \fIfoo\fP\fB:\fP\fIbar\fP\fB:\fP\fIbaz\fP\fB:\fP\fImore\fP. | 154 | their arguments, as in \fIfoo\fP\fB:\fP\fIbar\fP\fB:\fP\fIbaz\fP\fB:\fP\fImore\fP. |
diff --git a/lib-src/etags.c b/lib-src/etags.c index 182cb4cc876..e8e15769606 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -971,11 +971,12 @@ Relative ones are stored relative to the output file's directory.\n"); | |||
| 971 | in some languages."); | 971 | in some languages."); |
| 972 | 972 | ||
| 973 | puts ("-Q, --class-qualify\n\ | 973 | puts ("-Q, --class-qualify\n\ |
| 974 | Qualify tag names with their class name in C++, ObjC, and Java.\n\ | 974 | Qualify tag names with their class name in C++, ObjC, Java, and Perl.\n\ |
| 975 | This produces tag names of the form \"class::member\" for C++,\n\ | 975 | This produces tag names of the form \"class::member\" for C++,\n\ |
| 976 | \"class(category)\" for Objective C, and \"class.member\" for Java.\n\ | 976 | \"class(category)\" for Objective C, and \"class.member\" for Java.\n\ |
| 977 | For Objective C, this also produces class methods qualified with\n\ | 977 | For Objective C, this also produces class methods qualified with\n\ |
| 978 | their arguments, as in \"foo:bar:baz:more\"."); | 978 | their arguments, as in \"foo:bar:baz:more\".\n\ |
| 979 | For Perl, this produces \"package::member\"."); | ||
| 979 | puts ("-r REGEXP, --regex=REGEXP or --regex=@regexfile\n\ | 980 | puts ("-r REGEXP, --regex=REGEXP or --regex=@regexfile\n\ |
| 980 | Make a tag for each line matching a regular expression pattern\n\ | 981 | Make a tag for each line matching a regular expression pattern\n\ |
| 981 | in the following files. {LANGUAGE}REGEXP uses REGEXP for LANGUAGE\n\ | 982 | in the following files. {LANGUAGE}REGEXP uses REGEXP for LANGUAGE\n\ |
| @@ -4534,10 +4535,21 @@ Perl_functions (FILE *inf) | |||
| 4534 | continue; /* nothing found */ | 4535 | continue; /* nothing found */ |
| 4535 | pos = strchr (sp, ':'); | 4536 | pos = strchr (sp, ':'); |
| 4536 | if (pos && pos < cp && pos[1] == ':') | 4537 | if (pos && pos < cp && pos[1] == ':') |
| 4537 | /* The name is already qualified. */ | 4538 | { |
| 4538 | make_tag (sp, cp - sp, true, | 4539 | /* The name is already qualified. */ |
| 4539 | lb.buffer, cp - lb.buffer + 1, lineno, linecharno); | 4540 | if (!class_qualify) |
| 4540 | else | 4541 | { |
| 4542 | char *q = pos + 2, *qpos; | ||
| 4543 | while ((qpos = strchr (q, ':')) != NULL | ||
| 4544 | && qpos < cp | ||
| 4545 | && qpos[1] == ':') | ||
| 4546 | q = qpos + 2; | ||
| 4547 | sp = q; | ||
| 4548 | } | ||
| 4549 | make_tag (sp, cp - sp, true, | ||
| 4550 | lb.buffer, cp - lb.buffer + 1, lineno, linecharno); | ||
| 4551 | } | ||
| 4552 | else if (class_qualify) | ||
| 4541 | /* Qualify it. */ | 4553 | /* Qualify it. */ |
| 4542 | { | 4554 | { |
| 4543 | char savechar, *name; | 4555 | char savechar, *name; |
| @@ -4550,6 +4562,9 @@ Perl_functions (FILE *inf) | |||
| 4550 | lb.buffer, cp - lb.buffer + 1, lineno, linecharno); | 4562 | lb.buffer, cp - lb.buffer + 1, lineno, linecharno); |
| 4551 | free (name); | 4563 | free (name); |
| 4552 | } | 4564 | } |
| 4565 | else | ||
| 4566 | make_tag (sp, cp - sp, true, | ||
| 4567 | lb.buffer, cp - lb.buffer + 1, lineno, linecharno); | ||
| 4553 | } | 4568 | } |
| 4554 | else if (LOOKING_AT (cp, "use constant") | 4569 | else if (LOOKING_AT (cp, "use constant") |
| 4555 | || LOOKING_AT (cp, "use constant::defer")) | 4570 | || LOOKING_AT (cp, "use constant::defer")) |
diff --git a/test/etags/CTAGS.good b/test/etags/CTAGS.good index ebde715272a..19bc0bef657 100644 --- a/test/etags/CTAGS.good +++ b/test/etags/CTAGS.good | |||
| @@ -305,8 +305,6 @@ BUFFER_OBJFWDP c-src/emacs/src/lisp.h /^BUFFER_OBJFWDP (union Lisp_Fwd *a)$/ | |||
| 305 | BYTE_MARK_STACK c-src/emacs/src/lisp.h 3181 | 305 | BYTE_MARK_STACK c-src/emacs/src/lisp.h 3181 |
| 306 | Bar lua-src/test.lua /^function Square.something:Bar ()$/ | 306 | Bar lua-src/test.lua /^function Square.something:Bar ()$/ |
| 307 | Bar perl-src/kai-test.pl /^package Bar;$/ | 307 | Bar perl-src/kai-test.pl /^package Bar;$/ |
| 308 | Bar::f4 perl-src/kai-test.pl /^sub Bar::f4 {$/ | ||
| 309 | Bar::f5 perl-src/kai-test.pl /^sub f5 {$/ | ||
| 310 | Barrier_Function_Pointer/t ada-src/etags-test-for.ada /^ type Barrier_Function_Pointer is access$/ | 308 | Barrier_Function_Pointer/t ada-src/etags-test-for.ada /^ type Barrier_Function_Pointer is access$/ |
| 311 | Bidule/b ada-src/etags-test-for.ada /^ protected body Bidule is$/ | 309 | Bidule/b ada-src/etags-test-for.ada /^ protected body Bidule is$/ |
| 312 | Bidule/b ada-src/waroquiers.ada /^ protected body Bidule is$/ | 310 | Bidule/b ada-src/waroquiers.ada /^ protected body Bidule is$/ |
| @@ -614,8 +612,6 @@ Finalize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Finalize_TAS_Cell (Cel | |||
| 614 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ | 612 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ |
| 615 | Foo perl-src/kai-test.pl /^package Foo;$/ | 613 | Foo perl-src/kai-test.pl /^package Foo;$/ |
| 616 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ | 614 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ |
| 617 | Foo::Bar::f6 perl-src/kai-test.pl /^sub f6 {$/ | ||
| 618 | Foo::f3 perl-src/kai-test.pl /^sub f3 {$/ | ||
| 619 | Forth_help c-src/etags.c 573 | 615 | Forth_help c-src/etags.c 573 |
| 620 | Forth_suffixes c-src/etags.c 571 | 616 | Forth_suffixes c-src/etags.c 571 |
| 621 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ | 617 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ |
| @@ -2931,7 +2927,14 @@ f cp-src/c.C /^ void f() {}$/ | |||
| 2931 | f cp-src/fail.C /^ int f() { return 5; }$/ | 2927 | f cp-src/fail.C /^ int f() { return 5; }$/ |
| 2932 | f cp-src/fail.C /^int A::B::f() { return 2; }$/ | 2928 | f cp-src/fail.C /^int A::B::f() { return 2; }$/ |
| 2933 | f1 c.c /^ f1 () { \/* Do something. *\/; }$/ | 2929 | f1 c.c /^ f1 () { \/* Do something. *\/; }$/ |
| 2930 | f1 perl-src/kai-test.pl /^sub f1 {$/ | ||
| 2934 | f2 c.c /^void f2 () { \/* Do something. *\/; }$/ | 2931 | f2 c.c /^void f2 () { \/* Do something. *\/; }$/ |
| 2932 | f2 perl-src/kai-test.pl /^sub main::f2 {$/ | ||
| 2933 | f3 perl-src/kai-test.pl /^sub f3 {$/ | ||
| 2934 | f4 perl-src/kai-test.pl /^sub Bar::f4 {$/ | ||
| 2935 | f5 perl-src/kai-test.pl /^sub f5 {$/ | ||
| 2936 | f6 perl-src/kai-test.pl /^sub f6 {$/ | ||
| 2937 | f7 perl-src/kai-test.pl /^sub f7 {$/ | ||
| 2935 | fast_string_match_ignore_case c-src/emacs/src/lisp.h /^fast_string_match_ignore_case (Lisp_Object regexp,/ | 2938 | fast_string_match_ignore_case c-src/emacs/src/lisp.h /^fast_string_match_ignore_case (Lisp_Object regexp,/ |
| 2936 | fastctags make-src/Makefile /^fastctags:$/ | 2939 | fastctags make-src/Makefile /^fastctags:$/ |
| 2937 | fastetags make-src/Makefile /^fastetags:$/ | 2940 | fastetags make-src/Makefile /^fastetags:$/ |
| @@ -2952,6 +2955,7 @@ fignore c-src/etags.c 2416 | |||
| 2952 | file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun file-of-tag (&optional relative)$/ | 2955 | file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun file-of-tag (&optional relative)$/ |
| 2953 | file-of-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar file-of-tag-function nil$/ | 2956 | file-of-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar file-of-tag-function nil$/ |
| 2954 | fileJoin php-src/lce_functions.php /^ function fileJoin()$/ | 2957 | fileJoin php-src/lce_functions.php /^ function fileJoin()$/ |
| 2958 | file_end perl-src/htlmify-cystic /^sub file_end ()$/ | ||
| 2955 | file_index perl-src/htlmify-cystic 33 | 2959 | file_index perl-src/htlmify-cystic 33 |
| 2956 | file_tocs perl-src/htlmify-cystic 30 | 2960 | file_tocs perl-src/htlmify-cystic 30 |
| 2957 | filename_is_absolute c-src/etags.c /^filename_is_absolute (char *fn)$/ | 2961 | filename_is_absolute c-src/etags.c /^filename_is_absolute (char *fn)$/ |
| @@ -2978,6 +2982,10 @@ find-tag-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-tag-o | |||
| 2978 | find_entries c-src/etags.c /^find_entries (FILE *inf)$/ | 2982 | find_entries c-src/etags.c /^find_entries (FILE *inf)$/ |
| 2979 | find_user_signal_name c-src/emacs/src/keyboard.c /^find_user_signal_name (int sig)$/ | 2983 | find_user_signal_name c-src/emacs/src/keyboard.c /^find_user_signal_name (int sig)$/ |
| 2980 | findcats prol-src/natded.prolog /^findcats([],Left,Left).$/ | 2984 | findcats prol-src/natded.prolog /^findcats([],Left,Left).$/ |
| 2985 | finish_appendices perl-src/htlmify-cystic /^sub finish_appendices ()$/ | ||
| 2986 | finish_sections perl-src/htlmify-cystic /^sub finish_sections ()$/ | ||
| 2987 | finish_subsections perl-src/htlmify-cystic /^sub finish_subsections ()$/ | ||
| 2988 | finish_subsubsections perl-src/htlmify-cystic /^sub finish_subsubsections ()$/ | ||
| 2981 | finlist c-src/etags.c 2414 | 2989 | finlist c-src/etags.c 2414 |
| 2982 | first c-src/emacs/src/gmalloc.c 151 | 2990 | first c-src/emacs/src/gmalloc.c 151 |
| 2983 | fitchtreelist prol-src/natded.prolog /^fitchtreelist([]).$/ | 2991 | fitchtreelist prol-src/natded.prolog /^fitchtreelist([]).$/ |
| @@ -3085,6 +3093,7 @@ get_layer_by_name lua-src/allegro.lua /^local function get_layer_by_name (sprite | |||
| 3085 | get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/ | 3093 | get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/ |
| 3086 | get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/ | 3094 | get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/ |
| 3087 | getcjmp c-src/emacs/src/keyboard.c 147 | 3095 | getcjmp c-src/emacs/src/keyboard.c 147 |
| 3096 | getopt perl-src/yagrip.pl /^sub getopt {$/ | ||
| 3088 | getopt.o make-src/Makefile /^getopt.o: emacs\/lib-src\/getopt.c$/ | 3097 | getopt.o make-src/Makefile /^getopt.o: emacs\/lib-src\/getopt.c$/ |
| 3089 | getopt1.o make-src/Makefile /^getopt1.o: emacs\/lib-src\/getopt1.c$/ | 3098 | getopt1.o make-src/Makefile /^getopt1.o: emacs\/lib-src\/getopt1.c$/ |
| 3090 | getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/ | 3099 | getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/ |
| @@ -3419,23 +3428,6 @@ mach_reply_port c-src/machsyscalls.h /^SYSCALL (mach_reply_port, -26,$/ | |||
| 3419 | mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/ | 3428 | mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/ |
| 3420 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ | 3429 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ |
| 3421 | magic c-src/emacs/src/gmalloc.c 1863 | 3430 | magic c-src/emacs/src/gmalloc.c 1863 |
| 3422 | main::f1 perl-src/kai-test.pl /^sub f1 {$/ | ||
| 3423 | main::f2 perl-src/kai-test.pl /^sub main::f2 {$/ | ||
| 3424 | main::f7 perl-src/kai-test.pl /^sub f7 {$/ | ||
| 3425 | main::file_end perl-src/htlmify-cystic /^sub file_end ()$/ | ||
| 3426 | main::finish_appendices perl-src/htlmify-cystic /^sub finish_appendices ()$/ | ||
| 3427 | main::finish_sections perl-src/htlmify-cystic /^sub finish_sections ()$/ | ||
| 3428 | main::finish_subsections perl-src/htlmify-cystic /^sub finish_subsections ()$/ | ||
| 3429 | main::finish_subsubsections perl-src/htlmify-cystic /^sub finish_subsubsections ()$/ | ||
| 3430 | main::getopt perl-src/yagrip.pl /^sub getopt {$/ | ||
| 3431 | main::read_toc perl-src/htlmify-cystic /^sub read_toc ()$/ | ||
| 3432 | main::section_href perl-src/htlmify-cystic /^sub section_href ($)$/ | ||
| 3433 | main::section_name perl-src/htlmify-cystic /^sub section_name ($)$/ | ||
| 3434 | main::section_url perl-src/htlmify-cystic /^sub section_url ()$/ | ||
| 3435 | main::section_url_base perl-src/htlmify-cystic /^sub section_url_base ()$/ | ||
| 3436 | main::section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/ | ||
| 3437 | main::toc_line perl-src/htlmify-cystic /^sub toc_line ($)$/ | ||
| 3438 | main::usage perl-src/yagrip.pl /^sub usage {$/ | ||
| 3439 | maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/ | 3431 | maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/ |
| 3440 | make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ | 3432 | make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ |
| 3441 | make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/ | 3433 | make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/ |
| @@ -3922,6 +3914,7 @@ read_key_sequence_cmd c-src/emacs/src/keyboard.c 232 | |||
| 3922 | read_key_sequence_remapped c-src/emacs/src/keyboard.c 233 | 3914 | read_key_sequence_remapped c-src/emacs/src/keyboard.c 233 |
| 3923 | read_key_sequence_vs c-src/emacs/src/keyboard.c /^read_key_sequence_vs (Lisp_Object prompt, Lisp_Obj/ | 3915 | read_key_sequence_vs c-src/emacs/src/keyboard.c /^read_key_sequence_vs (Lisp_Object prompt, Lisp_Obj/ |
| 3924 | read_menu_command c-src/emacs/src/keyboard.c /^read_menu_command (void)$/ | 3916 | read_menu_command c-src/emacs/src/keyboard.c /^read_menu_command (void)$/ |
| 3917 | read_toc perl-src/htlmify-cystic /^sub read_toc ()$/ | ||
| 3925 | readable_events c-src/emacs/src/keyboard.c /^readable_events (int flags)$/ | 3918 | readable_events c-src/emacs/src/keyboard.c /^readable_events (int flags)$/ |
| 3926 | readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/ | 3919 | readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/ |
| 3927 | readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE / | 3920 | readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE / |
| @@ -4027,8 +4020,13 @@ scroll_bar_parts c-src/emacs/src/keyboard.c 5189 | |||
| 4027 | sec=\relax tex-src/texinfo.tex /^\\let\\appendixsec=\\relax$/ | 4020 | sec=\relax tex-src/texinfo.tex /^\\let\\appendixsec=\\relax$/ |
| 4028 | section perl-src/htlmify-cystic 25 | 4021 | section perl-src/htlmify-cystic 25 |
| 4029 | section=\relax tex-src/texinfo.tex /^\\let\\appendixsection=\\relax$/ | 4022 | section=\relax tex-src/texinfo.tex /^\\let\\appendixsection=\\relax$/ |
| 4023 | section_href perl-src/htlmify-cystic /^sub section_href ($)$/ | ||
| 4030 | section_name perl-src/htlmify-cystic 12 | 4024 | section_name perl-src/htlmify-cystic 12 |
| 4025 | section_name perl-src/htlmify-cystic /^sub section_name ($)$/ | ||
| 4031 | section_toc perl-src/htlmify-cystic 15 | 4026 | section_toc perl-src/htlmify-cystic 15 |
| 4027 | section_url perl-src/htlmify-cystic /^sub section_url ()$/ | ||
| 4028 | section_url_base perl-src/htlmify-cystic /^sub section_url_base ()$/ | ||
| 4029 | section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/ | ||
| 4032 | select prol-src/natded.prolog /^select(X,[X|Xs],Xs).$/ | 4030 | select prol-src/natded.prolog /^select(X,[X|Xs],Xs).$/ |
| 4033 | select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table ()$/ | 4031 | select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table ()$/ |
| 4034 | select-tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(define-derived-mode select-tags-table-mode specia/ | 4032 | select-tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(define-derived-mode select-tags-table-mode specia/ |
| @@ -4324,6 +4322,7 @@ timers_run c-src/emacs/src/keyboard.c 320 | |||
| 4324 | tinbody c-src/etags.c 2431 | 4322 | tinbody c-src/etags.c 2431 |
| 4325 | tkeyseen c-src/etags.c 2429 | 4323 | tkeyseen c-src/etags.c 2429 |
| 4326 | tnone c-src/etags.c 2428 | 4324 | tnone c-src/etags.c 2428 |
| 4325 | toc_line perl-src/htlmify-cystic /^sub toc_line ($)$/ | ||
| 4327 | toggleDescription objc-src/PackInsp.m /^-toggleDescription$/ | 4326 | toggleDescription objc-src/PackInsp.m /^-toggleDescription$/ |
| 4328 | tok c-src/etags.c 2491 | 4327 | tok c-src/etags.c 2491 |
| 4329 | token c-src/etags.c 2508 | 4328 | token c-src/etags.c 2508 |
| @@ -4396,6 +4395,7 @@ unsignedp cccp.y 113 | |||
| 4396 | unsignedp y-src/cccp.y 112 | 4395 | unsignedp y-src/cccp.y 112 |
| 4397 | uprintmax_t c-src/emacs/src/lisp.h 149 | 4396 | uprintmax_t c-src/emacs/src/lisp.h 149 |
| 4398 | uprintmax_t c-src/emacs/src/lisp.h 154 | 4397 | uprintmax_t c-src/emacs/src/lisp.h 154 |
| 4398 | usage perl-src/yagrip.pl /^sub usage {$/ | ||
| 4399 | usecharno c-src/etags.c 210 | 4399 | usecharno c-src/etags.c 210 |
| 4400 | used c-src/emacs/src/regex.h 347 | 4400 | used c-src/emacs/src/regex.h 347 |
| 4401 | used_syntax c-src/emacs/src/regex.h 398 | 4401 | used_syntax c-src/emacs/src/regex.h 398 |
diff --git a/test/etags/ETAGS.good_1 b/test/etags/ETAGS.good_1 index d2550863428..58661bbf600 100644 --- a/test/etags/ETAGS.good_1 +++ b/test/etags/ETAGS.good_1 | |||
| @@ -2665,7 +2665,7 @@ define("TEST"TEST1,0 | |||
| 2665 | test 4,26 | 2665 | test 4,26 |
| 2666 | foo(16,200 | 2666 | foo(16,200 |
| 2667 | 2667 | ||
| 2668 | perl-src/htlmify-cystic,1443 | 2668 | perl-src/htlmify-cystic,1197 |
| 2669 | my @section_name;section_name12,236 | 2669 | my @section_name;section_name12,236 |
| 2670 | my @appendix_name;appendix_name13,254 | 2670 | my @appendix_name;appendix_name13,254 |
| 2671 | my @section_toc;section_toc15,274 | 2671 | my @section_toc;section_toc15,274 |
| @@ -2683,7 +2683,7 @@ my $output_file;output_file35,556 | |||
| 2683 | my $line;line37,574 | 2683 | my $line;line37,574 |
| 2684 | my $subsection_marker;subsection_marker161,3883 | 2684 | my $subsection_marker;subsection_marker161,3883 |
| 2685 | my $new;new163,3907 | 2685 | my $new;new163,3907 |
| 2686 | sub read_toc main::read_toc165,3917 | 2686 | sub read_toc 165,3917 |
| 2687 | my $entry entry218,5621 | 2687 | my $entry entry218,5621 |
| 2688 | my $entry entry234,6077 | 2688 | my $entry entry234,6077 |
| 2689 | my $entry entry245,6351 | 2689 | my $entry entry245,6351 |
| @@ -2692,38 +2692,38 @@ sub read_toc main::read_toc165,3917 | |||
| 2692 | my $entry entry276,7204 | 2692 | my $entry entry276,7204 |
| 2693 | my $entry entry281,7328 | 2693 | my $entry entry281,7328 |
| 2694 | my $entry entry296,7698 | 2694 | my $entry entry296,7698 |
| 2695 | sub finish_subsubsections main::finish_subsubsections302,7805 | 2695 | sub finish_subsubsections 302,7805 |
| 2696 | sub finish_subsections main::finish_subsections309,7987 | 2696 | sub finish_subsections 309,7987 |
| 2697 | sub finish_sections main::finish_sections320,8310 | 2697 | sub finish_sections 320,8310 |
| 2698 | sub finish_appendices main::finish_appendices331,8599 | 2698 | sub finish_appendices 331,8599 |
| 2699 | sub section_url_base main::section_url_base337,8724 | 2699 | sub section_url_base 337,8724 |
| 2700 | sub section_url_name main::section_url_name342,8922 | 2700 | sub section_url_name 342,8922 |
| 2701 | sub section_url main::section_url355,9284 | 2701 | sub section_url 355,9284 |
| 2702 | my $name name357,9336 | 2702 | my $name name357,9336 |
| 2703 | sub section_href main::section_href364,9452 | 2703 | sub section_href 364,9452 |
| 2704 | sub section_name main::section_name368,9551 | 2704 | sub section_name 368,9551 |
| 2705 | sub toc_line main::toc_line372,9655 | 2705 | sub toc_line 372,9655 |
| 2706 | sub file_end main::file_end375,9750 | 2706 | sub file_end 375,9750 |
| 2707 | 2707 | ||
| 2708 | perl-src/yagrip.pl,258 | 2708 | perl-src/yagrip.pl,233 |
| 2709 | sub getopt main::getopt7,156 | 2709 | sub getopt 7,156 |
| 2710 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 | 2710 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 |
| 2711 | sub usage main::usage38,856 | 2711 | sub usage 38,856 |
| 2712 | local($prog,$_,@list)($prog,$_,@list39,868 | 2712 | local($prog,$_,@list)($prog,$_,@list39,868 |
| 2713 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 | 2713 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 |
| 2714 | 2714 | ||
| 2715 | perl-src/kai-test.pl,244 | 2715 | perl-src/kai-test.pl,203 |
| 2716 | sub f1 main::f12,16 | 2716 | sub f1 2,16 |
| 2717 | sub main::f2 6,50 | 2717 | sub main::f2 f26,50 |
| 2718 | package Foo;10,90 | 2718 | package Foo;10,90 |
| 2719 | sub f3 Foo::f312,104 | 2719 | sub f3 12,104 |
| 2720 | sub Bar::f4 16,138 | 2720 | sub Bar::f4 f416,138 |
| 2721 | package Bar;20,177 | 2721 | package Bar;20,177 |
| 2722 | sub f5 Bar::f522,191 | 2722 | sub f5 22,191 |
| 2723 | package Foo::Bar;26,225 | 2723 | package Foo::Bar;26,225 |
| 2724 | sub f6 Foo::Bar::f628,244 | 2724 | sub f6 28,244 |
| 2725 | package main;32,278 | 2725 | package main;32,278 |
| 2726 | sub f7 main::f734,293 | 2726 | sub f7 34,293 |
| 2727 | 2727 | ||
| 2728 | ps-src/rfc1245.ps,2478 | 2728 | ps-src/rfc1245.ps,2478 |
| 2729 | /FMversion 12,311 | 2729 | /FMversion 12,311 |
diff --git a/test/etags/ETAGS.good_2 b/test/etags/ETAGS.good_2 index 9eb1d4297c8..ecfa7d19885 100644 --- a/test/etags/ETAGS.good_2 +++ b/test/etags/ETAGS.good_2 | |||
| @@ -3235,7 +3235,7 @@ define("TEST"TEST1,0 | |||
| 3235 | test 4,26 | 3235 | test 4,26 |
| 3236 | foo(16,200 | 3236 | foo(16,200 |
| 3237 | 3237 | ||
| 3238 | perl-src/htlmify-cystic,1443 | 3238 | perl-src/htlmify-cystic,1197 |
| 3239 | my @section_name;section_name12,236 | 3239 | my @section_name;section_name12,236 |
| 3240 | my @appendix_name;appendix_name13,254 | 3240 | my @appendix_name;appendix_name13,254 |
| 3241 | my @section_toc;section_toc15,274 | 3241 | my @section_toc;section_toc15,274 |
| @@ -3253,7 +3253,7 @@ my $output_file;output_file35,556 | |||
| 3253 | my $line;line37,574 | 3253 | my $line;line37,574 |
| 3254 | my $subsection_marker;subsection_marker161,3883 | 3254 | my $subsection_marker;subsection_marker161,3883 |
| 3255 | my $new;new163,3907 | 3255 | my $new;new163,3907 |
| 3256 | sub read_toc main::read_toc165,3917 | 3256 | sub read_toc 165,3917 |
| 3257 | my $entry entry218,5621 | 3257 | my $entry entry218,5621 |
| 3258 | my $entry entry234,6077 | 3258 | my $entry entry234,6077 |
| 3259 | my $entry entry245,6351 | 3259 | my $entry entry245,6351 |
| @@ -3262,38 +3262,38 @@ sub read_toc main::read_toc165,3917 | |||
| 3262 | my $entry entry276,7204 | 3262 | my $entry entry276,7204 |
| 3263 | my $entry entry281,7328 | 3263 | my $entry entry281,7328 |
| 3264 | my $entry entry296,7698 | 3264 | my $entry entry296,7698 |
| 3265 | sub finish_subsubsections main::finish_subsubsections302,7805 | 3265 | sub finish_subsubsections 302,7805 |
| 3266 | sub finish_subsections main::finish_subsections309,7987 | 3266 | sub finish_subsections 309,7987 |
| 3267 | sub finish_sections main::finish_sections320,8310 | 3267 | sub finish_sections 320,8310 |
| 3268 | sub finish_appendices main::finish_appendices331,8599 | 3268 | sub finish_appendices 331,8599 |
| 3269 | sub section_url_base main::section_url_base337,8724 | 3269 | sub section_url_base 337,8724 |
| 3270 | sub section_url_name main::section_url_name342,8922 | 3270 | sub section_url_name 342,8922 |
| 3271 | sub section_url main::section_url355,9284 | 3271 | sub section_url 355,9284 |
| 3272 | my $name name357,9336 | 3272 | my $name name357,9336 |
| 3273 | sub section_href main::section_href364,9452 | 3273 | sub section_href 364,9452 |
| 3274 | sub section_name main::section_name368,9551 | 3274 | sub section_name 368,9551 |
| 3275 | sub toc_line main::toc_line372,9655 | 3275 | sub toc_line 372,9655 |
| 3276 | sub file_end main::file_end375,9750 | 3276 | sub file_end 375,9750 |
| 3277 | 3277 | ||
| 3278 | perl-src/yagrip.pl,258 | 3278 | perl-src/yagrip.pl,233 |
| 3279 | sub getopt main::getopt7,156 | 3279 | sub getopt 7,156 |
| 3280 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 | 3280 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 |
| 3281 | sub usage main::usage38,856 | 3281 | sub usage 38,856 |
| 3282 | local($prog,$_,@list)($prog,$_,@list39,868 | 3282 | local($prog,$_,@list)($prog,$_,@list39,868 |
| 3283 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 | 3283 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 |
| 3284 | 3284 | ||
| 3285 | perl-src/kai-test.pl,244 | 3285 | perl-src/kai-test.pl,203 |
| 3286 | sub f1 main::f12,16 | 3286 | sub f1 2,16 |
| 3287 | sub main::f2 6,50 | 3287 | sub main::f2 f26,50 |
| 3288 | package Foo;10,90 | 3288 | package Foo;10,90 |
| 3289 | sub f3 Foo::f312,104 | 3289 | sub f3 12,104 |
| 3290 | sub Bar::f4 16,138 | 3290 | sub Bar::f4 f416,138 |
| 3291 | package Bar;20,177 | 3291 | package Bar;20,177 |
| 3292 | sub f5 Bar::f522,191 | 3292 | sub f5 22,191 |
| 3293 | package Foo::Bar;26,225 | 3293 | package Foo::Bar;26,225 |
| 3294 | sub f6 Foo::Bar::f628,244 | 3294 | sub f6 28,244 |
| 3295 | package main;32,278 | 3295 | package main;32,278 |
| 3296 | sub f7 main::f734,293 | 3296 | sub f7 34,293 |
| 3297 | 3297 | ||
| 3298 | ps-src/rfc1245.ps,2478 | 3298 | ps-src/rfc1245.ps,2478 |
| 3299 | /FMversion 12,311 | 3299 | /FMversion 12,311 |
diff --git a/test/etags/ETAGS.good_3 b/test/etags/ETAGS.good_3 index 1f5a34272e3..5f84aa9a0c6 100644 --- a/test/etags/ETAGS.good_3 +++ b/test/etags/ETAGS.good_3 | |||
| @@ -3012,7 +3012,7 @@ test 4,26 | |||
| 3012 | var $test12,176 | 3012 | var $test12,176 |
| 3013 | foo(16,200 | 3013 | foo(16,200 |
| 3014 | 3014 | ||
| 3015 | perl-src/htlmify-cystic,1443 | 3015 | perl-src/htlmify-cystic,1197 |
| 3016 | my @section_name;section_name12,236 | 3016 | my @section_name;section_name12,236 |
| 3017 | my @appendix_name;appendix_name13,254 | 3017 | my @appendix_name;appendix_name13,254 |
| 3018 | my @section_toc;section_toc15,274 | 3018 | my @section_toc;section_toc15,274 |
| @@ -3030,7 +3030,7 @@ my $output_file;output_file35,556 | |||
| 3030 | my $line;line37,574 | 3030 | my $line;line37,574 |
| 3031 | my $subsection_marker;subsection_marker161,3883 | 3031 | my $subsection_marker;subsection_marker161,3883 |
| 3032 | my $new;new163,3907 | 3032 | my $new;new163,3907 |
| 3033 | sub read_toc main::read_toc165,3917 | 3033 | sub read_toc 165,3917 |
| 3034 | my $entry entry218,5621 | 3034 | my $entry entry218,5621 |
| 3035 | my $entry entry234,6077 | 3035 | my $entry entry234,6077 |
| 3036 | my $entry entry245,6351 | 3036 | my $entry entry245,6351 |
| @@ -3039,38 +3039,38 @@ sub read_toc main::read_toc165,3917 | |||
| 3039 | my $entry entry276,7204 | 3039 | my $entry entry276,7204 |
| 3040 | my $entry entry281,7328 | 3040 | my $entry entry281,7328 |
| 3041 | my $entry entry296,7698 | 3041 | my $entry entry296,7698 |
| 3042 | sub finish_subsubsections main::finish_subsubsections302,7805 | 3042 | sub finish_subsubsections 302,7805 |
| 3043 | sub finish_subsections main::finish_subsections309,7987 | 3043 | sub finish_subsections 309,7987 |
| 3044 | sub finish_sections main::finish_sections320,8310 | 3044 | sub finish_sections 320,8310 |
| 3045 | sub finish_appendices main::finish_appendices331,8599 | 3045 | sub finish_appendices 331,8599 |
| 3046 | sub section_url_base main::section_url_base337,8724 | 3046 | sub section_url_base 337,8724 |
| 3047 | sub section_url_name main::section_url_name342,8922 | 3047 | sub section_url_name 342,8922 |
| 3048 | sub section_url main::section_url355,9284 | 3048 | sub section_url 355,9284 |
| 3049 | my $name name357,9336 | 3049 | my $name name357,9336 |
| 3050 | sub section_href main::section_href364,9452 | 3050 | sub section_href 364,9452 |
| 3051 | sub section_name main::section_name368,9551 | 3051 | sub section_name 368,9551 |
| 3052 | sub toc_line main::toc_line372,9655 | 3052 | sub toc_line 372,9655 |
| 3053 | sub file_end main::file_end375,9750 | 3053 | sub file_end 375,9750 |
| 3054 | 3054 | ||
| 3055 | perl-src/yagrip.pl,258 | 3055 | perl-src/yagrip.pl,233 |
| 3056 | sub getopt main::getopt7,156 | 3056 | sub getopt 7,156 |
| 3057 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 | 3057 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 |
| 3058 | sub usage main::usage38,856 | 3058 | sub usage 38,856 |
| 3059 | local($prog,$_,@list)($prog,$_,@list39,868 | 3059 | local($prog,$_,@list)($prog,$_,@list39,868 |
| 3060 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 | 3060 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 |
| 3061 | 3061 | ||
| 3062 | perl-src/kai-test.pl,244 | 3062 | perl-src/kai-test.pl,203 |
| 3063 | sub f1 main::f12,16 | 3063 | sub f1 2,16 |
| 3064 | sub main::f2 6,50 | 3064 | sub main::f2 f26,50 |
| 3065 | package Foo;10,90 | 3065 | package Foo;10,90 |
| 3066 | sub f3 Foo::f312,104 | 3066 | sub f3 12,104 |
| 3067 | sub Bar::f4 16,138 | 3067 | sub Bar::f4 f416,138 |
| 3068 | package Bar;20,177 | 3068 | package Bar;20,177 |
| 3069 | sub f5 Bar::f522,191 | 3069 | sub f5 22,191 |
| 3070 | package Foo::Bar;26,225 | 3070 | package Foo::Bar;26,225 |
| 3071 | sub f6 Foo::Bar::f628,244 | 3071 | sub f6 28,244 |
| 3072 | package main;32,278 | 3072 | package main;32,278 |
| 3073 | sub f7 main::f734,293 | 3073 | sub f7 34,293 |
| 3074 | 3074 | ||
| 3075 | ps-src/rfc1245.ps,2478 | 3075 | ps-src/rfc1245.ps,2478 |
| 3076 | /FMversion 12,311 | 3076 | /FMversion 12,311 |
diff --git a/test/etags/ETAGS.good_4 b/test/etags/ETAGS.good_4 index b8a3d9de6db..12e2a6549cf 100644 --- a/test/etags/ETAGS.good_4 +++ b/test/etags/ETAGS.good_4 | |||
| @@ -2829,7 +2829,7 @@ define("TEST"TEST1,0 | |||
| 2829 | test 4,26 | 2829 | test 4,26 |
| 2830 | foo(16,200 | 2830 | foo(16,200 |
| 2831 | 2831 | ||
| 2832 | perl-src/htlmify-cystic,1443 | 2832 | perl-src/htlmify-cystic,1197 |
| 2833 | my @section_name;section_name12,236 | 2833 | my @section_name;section_name12,236 |
| 2834 | my @appendix_name;appendix_name13,254 | 2834 | my @appendix_name;appendix_name13,254 |
| 2835 | my @section_toc;section_toc15,274 | 2835 | my @section_toc;section_toc15,274 |
| @@ -2847,7 +2847,7 @@ my $output_file;output_file35,556 | |||
| 2847 | my $line;line37,574 | 2847 | my $line;line37,574 |
| 2848 | my $subsection_marker;subsection_marker161,3883 | 2848 | my $subsection_marker;subsection_marker161,3883 |
| 2849 | my $new;new163,3907 | 2849 | my $new;new163,3907 |
| 2850 | sub read_toc main::read_toc165,3917 | 2850 | sub read_toc 165,3917 |
| 2851 | my $entry entry218,5621 | 2851 | my $entry entry218,5621 |
| 2852 | my $entry entry234,6077 | 2852 | my $entry entry234,6077 |
| 2853 | my $entry entry245,6351 | 2853 | my $entry entry245,6351 |
| @@ -2856,38 +2856,38 @@ sub read_toc main::read_toc165,3917 | |||
| 2856 | my $entry entry276,7204 | 2856 | my $entry entry276,7204 |
| 2857 | my $entry entry281,7328 | 2857 | my $entry entry281,7328 |
| 2858 | my $entry entry296,7698 | 2858 | my $entry entry296,7698 |
| 2859 | sub finish_subsubsections main::finish_subsubsections302,7805 | 2859 | sub finish_subsubsections 302,7805 |
| 2860 | sub finish_subsections main::finish_subsections309,7987 | 2860 | sub finish_subsections 309,7987 |
| 2861 | sub finish_sections main::finish_sections320,8310 | 2861 | sub finish_sections 320,8310 |
| 2862 | sub finish_appendices main::finish_appendices331,8599 | 2862 | sub finish_appendices 331,8599 |
| 2863 | sub section_url_base main::section_url_base337,8724 | 2863 | sub section_url_base 337,8724 |
| 2864 | sub section_url_name main::section_url_name342,8922 | 2864 | sub section_url_name 342,8922 |
| 2865 | sub section_url main::section_url355,9284 | 2865 | sub section_url 355,9284 |
| 2866 | my $name name357,9336 | 2866 | my $name name357,9336 |
| 2867 | sub section_href main::section_href364,9452 | 2867 | sub section_href 364,9452 |
| 2868 | sub section_name main::section_name368,9551 | 2868 | sub section_name 368,9551 |
| 2869 | sub toc_line main::toc_line372,9655 | 2869 | sub toc_line 372,9655 |
| 2870 | sub file_end main::file_end375,9750 | 2870 | sub file_end 375,9750 |
| 2871 | 2871 | ||
| 2872 | perl-src/yagrip.pl,258 | 2872 | perl-src/yagrip.pl,233 |
| 2873 | sub getopt main::getopt7,156 | 2873 | sub getopt 7,156 |
| 2874 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 | 2874 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 |
| 2875 | sub usage main::usage38,856 | 2875 | sub usage 38,856 |
| 2876 | local($prog,$_,@list)($prog,$_,@list39,868 | 2876 | local($prog,$_,@list)($prog,$_,@list39,868 |
| 2877 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 | 2877 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 |
| 2878 | 2878 | ||
| 2879 | perl-src/kai-test.pl,244 | 2879 | perl-src/kai-test.pl,203 |
| 2880 | sub f1 main::f12,16 | 2880 | sub f1 2,16 |
| 2881 | sub main::f2 6,50 | 2881 | sub main::f2 f26,50 |
| 2882 | package Foo;10,90 | 2882 | package Foo;10,90 |
| 2883 | sub f3 Foo::f312,104 | 2883 | sub f3 12,104 |
| 2884 | sub Bar::f4 16,138 | 2884 | sub Bar::f4 f416,138 |
| 2885 | package Bar;20,177 | 2885 | package Bar;20,177 |
| 2886 | sub f5 Bar::f522,191 | 2886 | sub f5 22,191 |
| 2887 | package Foo::Bar;26,225 | 2887 | package Foo::Bar;26,225 |
| 2888 | sub f6 Foo::Bar::f628,244 | 2888 | sub f6 28,244 |
| 2889 | package main;32,278 | 2889 | package main;32,278 |
| 2890 | sub f7 main::f734,293 | 2890 | sub f7 34,293 |
| 2891 | 2891 | ||
| 2892 | ps-src/rfc1245.ps,2478 | 2892 | ps-src/rfc1245.ps,2478 |
| 2893 | /FMversion 12,311 | 2893 | /FMversion 12,311 |
diff --git a/test/etags/ETAGS.good_5 b/test/etags/ETAGS.good_5 index 9e3b258eabc..98de4f2c2fb 100644 --- a/test/etags/ETAGS.good_5 +++ b/test/etags/ETAGS.good_5 | |||
| @@ -3746,7 +3746,7 @@ test 4,26 | |||
| 3746 | var $test12,176 | 3746 | var $test12,176 |
| 3747 | foo(16,200 | 3747 | foo(16,200 |
| 3748 | 3748 | ||
| 3749 | perl-src/htlmify-cystic,1443 | 3749 | perl-src/htlmify-cystic,1197 |
| 3750 | my @section_name;section_name12,236 | 3750 | my @section_name;section_name12,236 |
| 3751 | my @appendix_name;appendix_name13,254 | 3751 | my @appendix_name;appendix_name13,254 |
| 3752 | my @section_toc;section_toc15,274 | 3752 | my @section_toc;section_toc15,274 |
| @@ -3764,7 +3764,7 @@ my $output_file;output_file35,556 | |||
| 3764 | my $line;line37,574 | 3764 | my $line;line37,574 |
| 3765 | my $subsection_marker;subsection_marker161,3883 | 3765 | my $subsection_marker;subsection_marker161,3883 |
| 3766 | my $new;new163,3907 | 3766 | my $new;new163,3907 |
| 3767 | sub read_toc main::read_toc165,3917 | 3767 | sub read_toc 165,3917 |
| 3768 | my $entry entry218,5621 | 3768 | my $entry entry218,5621 |
| 3769 | my $entry entry234,6077 | 3769 | my $entry entry234,6077 |
| 3770 | my $entry entry245,6351 | 3770 | my $entry entry245,6351 |
| @@ -3773,38 +3773,38 @@ sub read_toc main::read_toc165,3917 | |||
| 3773 | my $entry entry276,7204 | 3773 | my $entry entry276,7204 |
| 3774 | my $entry entry281,7328 | 3774 | my $entry entry281,7328 |
| 3775 | my $entry entry296,7698 | 3775 | my $entry entry296,7698 |
| 3776 | sub finish_subsubsections main::finish_subsubsections302,7805 | 3776 | sub finish_subsubsections 302,7805 |
| 3777 | sub finish_subsections main::finish_subsections309,7987 | 3777 | sub finish_subsections 309,7987 |
| 3778 | sub finish_sections main::finish_sections320,8310 | 3778 | sub finish_sections 320,8310 |
| 3779 | sub finish_appendices main::finish_appendices331,8599 | 3779 | sub finish_appendices 331,8599 |
| 3780 | sub section_url_base main::section_url_base337,8724 | 3780 | sub section_url_base 337,8724 |
| 3781 | sub section_url_name main::section_url_name342,8922 | 3781 | sub section_url_name 342,8922 |
| 3782 | sub section_url main::section_url355,9284 | 3782 | sub section_url 355,9284 |
| 3783 | my $name name357,9336 | 3783 | my $name name357,9336 |
| 3784 | sub section_href main::section_href364,9452 | 3784 | sub section_href 364,9452 |
| 3785 | sub section_name main::section_name368,9551 | 3785 | sub section_name 368,9551 |
| 3786 | sub toc_line main::toc_line372,9655 | 3786 | sub toc_line 372,9655 |
| 3787 | sub file_end main::file_end375,9750 | 3787 | sub file_end 375,9750 |
| 3788 | 3788 | ||
| 3789 | perl-src/yagrip.pl,258 | 3789 | perl-src/yagrip.pl,233 |
| 3790 | sub getopt main::getopt7,156 | 3790 | sub getopt 7,156 |
| 3791 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 | 3791 | local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169 |
| 3792 | sub usage main::usage38,856 | 3792 | sub usage 38,856 |
| 3793 | local($prog,$_,@list)($prog,$_,@list39,868 | 3793 | local($prog,$_,@list)($prog,$_,@list39,868 |
| 3794 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 | 3794 | local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897 |
| 3795 | 3795 | ||
| 3796 | perl-src/kai-test.pl,244 | 3796 | perl-src/kai-test.pl,203 |
| 3797 | sub f1 main::f12,16 | 3797 | sub f1 2,16 |
| 3798 | sub main::f2 6,50 | 3798 | sub main::f2 f26,50 |
| 3799 | package Foo;10,90 | 3799 | package Foo;10,90 |
| 3800 | sub f3 Foo::f312,104 | 3800 | sub f3 12,104 |
| 3801 | sub Bar::f4 16,138 | 3801 | sub Bar::f4 f416,138 |
| 3802 | package Bar;20,177 | 3802 | package Bar;20,177 |
| 3803 | sub f5 Bar::f522,191 | 3803 | sub f5 22,191 |
| 3804 | package Foo::Bar;26,225 | 3804 | package Foo::Bar;26,225 |
| 3805 | sub f6 Foo::Bar::f628,244 | 3805 | sub f6 28,244 |
| 3806 | package main;32,278 | 3806 | package main;32,278 |
| 3807 | sub f7 main::f734,293 | 3807 | sub f7 34,293 |
| 3808 | 3808 | ||
| 3809 | ps-src/rfc1245.ps,2478 | 3809 | ps-src/rfc1245.ps,2478 |
| 3810 | /FMversion 12,311 | 3810 | /FMversion 12,311 |