diff options
| author | John Wiegley | 2016-02-03 23:56:08 -0800 |
|---|---|---|
| committer | John Wiegley | 2016-02-03 23:56:08 -0800 |
| commit | 0608bf1c3d91196bcf06a6da96243f0fac119089 (patch) | |
| tree | d79a6c43cd10c681445b75f859545c9f88e41899 /test | |
| parent | 91ab66201cedbcd2e4e8533a7152f6736ad08731 (diff) | |
| parent | ee7399792f865905d393df05c3d4e5ec309aa06c (diff) | |
| download | emacs-0608bf1c3d91196bcf06a6da96243f0fac119089.tar.gz emacs-0608bf1c3d91196bcf06a6da96243f0fac119089.zip | |
Merge from origin/emacs-25
ee73997 Make erc work better when encountering unknown prefix chars
b99141d Make erc completion case-insensitive again
66c4620 Make complection in erc use consistent casing
8c562b2 Make /QUIT in erc more robust
d93d2c5 Make tracking faces in Emacs work more reliably
af6ab7e Make shr not bug out on images on non-graphical displays
3311f40 Fix bookmark display widths
d90ab1e Fix typo in eww-make-unique-file-name
7f81825 Make it possible to TAB to input fields
a43a1dc Insert complete alt texts when images are disabled
56ed4e1 Allow eww text fields to grow
66b315c Make erc work when subword-mode is switched on
255b68f Fix IMAP doc example
91557f5 Quoting fixes in doc strings and diagnostics
2c0dc9f Fix warning message in hack-local-variables
504696d Etags: yet another improvement in Ruby tags
8784ebf Fix x-popup-menu on TTYs without a mouse
8b87ecb * lisp/emacs-lisp/map.el: Improvements to the docstring of the
pcase macro
6191003 Use pop-to-buffer-same-window in eww
fe321fd * autogen.sh: Revert all recent changes.
74ebd4a * make-dist: Updates related to nt/.
737193a * make-dist: Add modules/.
3696bf2 * make-dist: Update for super-special file that can't live in etc/.
a4278e2 Fix failure to compile ns-win.el in parallel builds
860da4d Fix names of tags generated for Ruby accessors
f6213ce Fix file-name recognition in 'etags'
e42e662 Change Ruby file names and extensions recognized by 'etags'
58bfb6a More improvements for Ruby support in 'etags'
c04e911 Add --git-config option to autogen.sh
5713466 Fix editing undo changes in eww fields
51362d6 Allow the user more control of popping up the eww window
ee0fbd8 Make eww-browse-url with new-window parameter work again
9c3142d Clean up eww code slightly
cb035f3 Don't insert nil faces in shr
4c3fae3 ; * lisp/progmodes/prolog.el: Remove some obsolete commentary.
93f2153 Improve the custom type of some user options.
9f60d7e Mark some risky calendar variables.
1d07dcd Highlight two additional SCSS keywords
ee8b466 Recommend enabling integrity-checking in git
e639e10 Some corrections in Elisp manual
d766ca8 Chatter when autogen.sh changes Git configuration
3b734e1 * org/org-compat.el (org-font-lock-ensure): Fix bogus test (bug#22399)
43cb9f8 Omit unnecessary history from Lisp intro
2fbd1da * etc/HISTORY: Add some more history, plus git tags.
c90e1b4 Improve elisp “Security Considerations” doc
cedd7ca autogen.sh now arranges for git to check hashes
86ce76b ; Fix ChangeLog.2 commit ID.
7b1d2b1 Fix (c & 040) typo in emergency escapes
a8273da Fix display of overlay strings with 'display' and 'box' property
fc48106 Fix imap-starttls-open
cdecbed Fix return value of imap-starttls-open
20c7e34 ; * etc/NEWS: Fix renamed command name
98bdbdb Correct reference to DARWIN_OS preprocessor symbol
b250d29 Spelling fix
b920a0e Spelling fixes
93b144b Pacify GCC on C library without glibc API
Diffstat (limited to 'test')
| -rw-r--r-- | test/etags/ruby-src/test1.ru | 42 | ||||
| -rw-r--r-- | test/manual/etags/CTAGS.good | 172 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_1 | 152 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_2 | 153 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_3 | 152 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_4 | 152 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_5 | 153 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_6 | 153 | ||||
| -rw-r--r-- | test/manual/etags/Makefile | 2 | ||||
| -rw-r--r-- | test/manual/indent/css-mode.css | 2 | ||||
| -rw-r--r-- | test/manual/indent/scss-mode.scss | 11 |
11 files changed, 834 insertions, 310 deletions
diff --git a/test/etags/ruby-src/test1.ru b/test/etags/ruby-src/test1.ru new file mode 100644 index 00000000000..bc9dbec36a2 --- /dev/null +++ b/test/etags/ruby-src/test1.ru | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | class A | ||
| 2 | def a() | ||
| 3 | super(" do ") | ||
| 4 | end | ||
| 5 | def b() | ||
| 6 | end | ||
| 7 | end | ||
| 8 | |||
| 9 | module A | ||
| 10 | class B | ||
| 11 | ABC = 4 | ||
| 12 | Def_ = 'blah' | ||
| 13 | Xyzzy =10 | ||
| 14 | |||
| 15 | def foo! | ||
| 16 | end | ||
| 17 | |||
| 18 | def self._bar?(abc) | ||
| 19 | end | ||
| 20 | |||
| 21 | class << self | ||
| 22 | def qux=(tee) | ||
| 23 | end | ||
| 24 | end | ||
| 25 | def X | ||
| 26 | attr_reader :foo | ||
| 27 | attr_reader :read1 , :read2; attr_writer :write1, :write2 | ||
| 28 | attr_writer :bar, | ||
| 29 | :baz, | ||
| 30 | :more | ||
| 31 | attr_accessor :tee | ||
| 32 | alias_method :qux, :tee, attr_accessor :bogus | ||
| 33 | alias_method :xyz, | ||
| 34 | :tee ; attr_reader :subtle | ||
| 35 | end | ||
| 36 | end | ||
| 37 | end | ||
| 38 | |||
| 39 | A::Constant = 5 | ||
| 40 | |||
| 41 | # def foo_in_comment | ||
| 42 | # end | ||
diff --git a/test/manual/etags/CTAGS.good b/test/manual/etags/CTAGS.good index 846725ef713..b78c194ac44 100644 --- a/test/manual/etags/CTAGS.good +++ b/test/manual/etags/CTAGS.good | |||
| @@ -1,17 +1,5 @@ | |||
| 1 | #a-defer-word forth-src/test-forth.fth /^defer #a-defer-word$/ | 1 | #a-defer-word forth-src/test-forth.fth /^defer #a-defer-word$/ |
| 2 | #some-storage forth-src/test-forth.fth /^2000 buffer: #some-storage$/ | 2 | #some-storage forth-src/test-forth.fth /^2000 buffer: #some-storage$/ |
| 3 | $ make-src/Makefile /^ @-$(MAKE) OPTIONS='--no-members' ${LATEST}ediff$/ | ||
| 4 | $ make-src/Makefile /^ @-$(MAKE) OPTIONS='--declarations --no-members' $/ | ||
| 5 | $ make-src/Makefile /^ @-$(MAKE) OPTIONS='--members' ${LATEST}ediff$/ | ||
| 6 | $ make-src/Makefile /^ @-$(MAKE) OPTIONS='--regex=@regexfile --no-member/ | ||
| 7 | $ make-src/Makefile /^ @-$(MAKE) OPTIONS='nonexistent --members --declar/ | ||
| 8 | $ make-src/Makefile /^ @-$(MAKE) ${LATEST}cdiff$/ | ||
| 9 | $ make-src/Makefile /^ $(CC) ${FASTCFLAGS} -c $?$/ | ||
| 10 | $ make-src/Makefile /^ $(CC) ${FASTCFLAGS} -c $?$/ | ||
| 11 | $ make-src/Makefile /^ $(CC) ${FASTCFLAGS} -c $?$/ | ||
| 12 | $ make-src/Makefile /^ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o etags e/ | ||
| 13 | $ make-src/Makefile /^ $(CC) $(CFLAGS) $(CPPFLAGS) -DCTAGS $(LDFLAGS) -o/ | ||
| 14 | $$i make-src/Makefile 140 | ||
| 15 | $0x80 c-src/sysdep.h 32 | 3 | $0x80 c-src/sysdep.h 32 |
| 16 | $SYS_##syscall_na c-src/sysdep.h 31 | 4 | $SYS_##syscall_na c-src/sysdep.h 31 |
| 17 | $domain php-src/lce_functions.php 175 | 5 | $domain php-src/lce_functions.php 175 |
| @@ -41,6 +29,9 @@ $unk_comment_lc php-src/lce_functions.php 117 | |||
| 41 | $user_comment php-src/lce_functions.php 109 | 29 | $user_comment php-src/lce_functions.php 109 |
| 42 | $user_comment php-src/lce_functions.php 167 | 30 | $user_comment php-src/lce_functions.php 167 |
| 43 | $user_comment_lc php-src/lce_functions.php 115 | 31 | $user_comment_lc php-src/lce_functions.php 115 |
| 32 | ${CHECKOBJS} make-src/Makefile /^${CHECKOBJS}: CFLAGS=-g3 -DNULLFREECHECK=0$/ | ||
| 33 | %cdiff make-src/Makefile /^%cdiff: CTAGS% CTAGS ${infiles}$/ | ||
| 34 | %ediff make-src/Makefile /^%ediff: ETAGS% ETAGS ${infiles}$/ | ||
| 44 | ($_,$flag,$opt,$f,$r,@temp perl-src/yagrip.pl 8 | 35 | ($_,$flag,$opt,$f,$r,@temp perl-src/yagrip.pl 8 |
| 45 | ($prog,$_,@list perl-src/yagrip.pl 39 | 36 | ($prog,$_,@list perl-src/yagrip.pl 39 |
| 46 | ($string,$flag,@string,@temp,@last perl-src/yagrip.pl 40 | 37 | ($string,$flag,@string,@temp,@last perl-src/yagrip.pl 40 |
| @@ -48,6 +39,7 @@ $user_comment_lc php-src/lce_functions.php 115 | |||
| 48 | (another-forth-word forth-src/test-forth.fth /^: (another-forth-word) ( -- )$/ | 39 | (another-forth-word forth-src/test-forth.fth /^: (another-forth-word) ( -- )$/ |
| 49 | + ruby-src/test.rb /^ def +(y)$/ | 40 | + ruby-src/test.rb /^ def +(y)$/ |
| 50 | + tex-src/texinfo.tex /^\\def+{{\\tt \\char 43}}$/ | 41 | + tex-src/texinfo.tex /^\\def+{{\\tt \\char 43}}$/ |
| 42 | .PRECIOUS make-src/Makefile /^.PRECIOUS: ETAGS CTAGS ETAGS16 CTAGS16 ETAGS17 CTA/ | ||
| 51 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/ | 43 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/ |
| 52 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/ | 44 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/ |
| 53 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/ | 45 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/ |
| @@ -138,6 +130,8 @@ $user_comment_lc php-src/lce_functions.php 115 | |||
| 138 | /graymode ps-src/rfc1245.ps /^\/graymode true def$/ | 130 | /graymode ps-src/rfc1245.ps /^\/graymode true def$/ |
| 139 | /grayness ps-src/rfc1245.ps /^\/grayness {$/ | 131 | /grayness ps-src/rfc1245.ps /^\/grayness {$/ |
| 140 | /guillemotleft ps-src/rfc1245.ps /^\/guillemotleft \/guillemotright \/ellipsis \/.notdef / | 132 | /guillemotleft ps-src/rfc1245.ps /^\/guillemotleft \/guillemotright \/ellipsis \/.notdef / |
| 133 | /home/www/pub/etags.c.gz make-src/Makefile /^\/home\/www\/pub\/etags.c.gz: etags.c$/ | ||
| 134 | /home/www/pub/software/unix/etags.tar.gz make-src/Makefile /^\/home\/www\/pub\/software\/unix\/etags.tar.gz: Makefile/ | ||
| 141 | /hx ps-src/rfc1245.ps /^\/hx { $/ | 135 | /hx ps-src/rfc1245.ps /^\/hx { $/ |
| 142 | /i ps-src/rfc1245.ps /^\/i \/j \/k \/l \/m \/n \/o \/p \/q \/r \/s \/t \/u \/v \/w \/x \/y/ | 136 | /i ps-src/rfc1245.ps /^\/i \/j \/k \/l \/m \/n \/o \/p \/q \/r \/s \/t \/u \/v \/w \/x \/y/ |
| 143 | /iacute ps-src/rfc1245.ps /^\/iacute \/igrave \/icircumflex \/idieresis \/ntilde \/o/ | 137 | /iacute ps-src/rfc1245.ps /^\/iacute \/igrave \/icircumflex \/idieresis \/ntilde \/o/ |
| @@ -207,16 +201,6 @@ $user_comment_lc php-src/lce_functions.php 115 | |||
| 207 | > tex-src/texinfo.tex /^\\def>{{\\tt \\gtr}}$/ | 201 | > tex-src/texinfo.tex /^\\def>{{\\tt \\gtr}}$/ |
| 208 | >field1 forth-src/test-forth.fth /^ 9 field >field1$/ | 202 | >field1 forth-src/test-forth.fth /^ 9 field >field1$/ |
| 209 | >field2 forth-src/test-forth.fth /^ 5 field >field2$/ | 203 | >field2 forth-src/test-forth.fth /^ 5 field >field2$/ |
| 210 | @$ make-src/Makefile /^ @$(MAKE) OPTIONS='--no-members' ${LATEST}ediff$/ | ||
| 211 | @$ make-src/Makefile /^ @$(MAKE) OPTIONS='--declarations --no-members' ${/ | ||
| 212 | @$ make-src/Makefile /^ @$(MAKE) OPTIONS='--members' ${LATEST}ediff$/ | ||
| 213 | @$ make-src/Makefile /^ @$(MAKE) OPTIONS='--regex=@regexfile --no-members/ | ||
| 214 | @$ make-src/Makefile /^ @$(MAKE) OPTIONS='nonexistent --members --declara/ | ||
| 215 | @$ make-src/Makefile /^ @$(MAKE) ${LATEST}cdiff$/ | ||
| 216 | @$ make-src/Makefile /^ @$(MAKE) etags "CPPFLAGS=-UVERSION"$/ | ||
| 217 | @$ make-src/Makefile /^ @$(MAKE) CHECKOBJS= CHECKFLAGS= etags "CFLAGS=-an/ | ||
| 218 | @$ make-src/Makefile /^ @$(MAKE) CHECKOBJS= CHECKFLAGS= ctags "CFLAGS=-an/ | ||
| 219 | @$ make-src/Makefile /^ @$(MAKE) etags CHECKOBJS= CHECKFLAGS= REGEXOBJS= / | ||
| 220 | A c.c 162 | 204 | A c.c 162 |
| 221 | A cp-src/c.C 39 | 205 | A cp-src/c.C 39 |
| 222 | A cp-src/c.C 56 | 206 | A cp-src/c.C 56 |
| @@ -226,9 +210,10 @@ A cp-src/c.C 73 | |||
| 226 | A cp-src/c.C 117 | 210 | A cp-src/c.C 117 |
| 227 | A cp-src/fail.C 7 | 211 | A cp-src/fail.C 7 |
| 228 | A cp-src/fail.C 23 | 212 | A cp-src/fail.C 23 |
| 229 | A ruby-src/test1.ruby /^class A$/ | 213 | A ruby-src/test1.ru /^class A$/ |
| 230 | A ruby-src/test1.ruby /^module A$/ | 214 | A ruby-src/test1.ru /^module A$/ |
| 231 | ABC ruby-src/test1.ruby 11 | 215 | ABC ruby-src/test1.ru 11 |
| 216 | ADASRC make-src/Makefile /^ADASRC=etags-test-for.ada 2ataspri.adb 2ataspri.ad/ | ||
| 232 | ADDRESS c-src/emacs/src/gmalloc.c /^#define ADDRESS(B) ((void *) (((B) - 1) * BLOCKSIZ/ | 217 | ADDRESS c-src/emacs/src/gmalloc.c /^#define ADDRESS(B) ((void *) (((B) - 1) * BLOCKSIZ/ |
| 233 | ALIGNOF_STRUCT_LISP_VECTOR c-src/emacs/src/lisp.h 1378 | 218 | ALIGNOF_STRUCT_LISP_VECTOR c-src/emacs/src/lisp.h 1378 |
| 234 | ALLOCATED_BEFORE_DUMPING c-src/emacs/src/gmalloc.c /^#define ALLOCATED_BEFORE_DUMPING(P) \\$/ | 219 | ALLOCATED_BEFORE_DUMPING c-src/emacs/src/gmalloc.c /^#define ALLOCATED_BEFORE_DUMPING(P) \\$/ |
| @@ -238,6 +223,7 @@ AND y-src/cccp.c 11 | |||
| 238 | ANSIC c-src/h.h 84 | 223 | ANSIC c-src/h.h 84 |
| 239 | ANSIC c-src/h.h 85 | 224 | ANSIC c-src/h.h 85 |
| 240 | AREF c-src/emacs/src/lisp.h /^AREF (Lisp_Object array, ptrdiff_t idx)$/ | 225 | AREF c-src/emacs/src/lisp.h /^AREF (Lisp_Object array, ptrdiff_t idx)$/ |
| 226 | ARGS make-src/Makefile /^ARGS=- < srclist$/ | ||
| 241 | ARITH_EQUAL c-src/emacs/src/lisp.h 3498 | 227 | ARITH_EQUAL c-src/emacs/src/lisp.h 3498 |
| 242 | ARITH_GRTR c-src/emacs/src/lisp.h 3501 | 228 | ARITH_GRTR c-src/emacs/src/lisp.h 3501 |
| 243 | ARITH_GRTR_OR_EQUAL c-src/emacs/src/lisp.h 3503 | 229 | ARITH_GRTR_OR_EQUAL c-src/emacs/src/lisp.h 3503 |
| @@ -250,6 +236,7 @@ ARRAY_MARK_FLAG c-src/emacs/src/lisp.h 768 | |||
| 250 | ASCII_CHAR_P c-src/emacs/src/lisp.h /^#define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)$/ | 236 | ASCII_CHAR_P c-src/emacs/src/lisp.h /^#define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)$/ |
| 251 | ASET c-src/emacs/src/lisp.h /^ASET (Lisp_Object array, ptrdiff_t idx, Lisp_Objec/ | 237 | ASET c-src/emacs/src/lisp.h /^ASET (Lisp_Object array, ptrdiff_t idx, Lisp_Objec/ |
| 252 | ASIZE c-src/emacs/src/lisp.h /^ASIZE (Lisp_Object array)$/ | 238 | ASIZE c-src/emacs/src/lisp.h /^ASIZE (Lisp_Object array)$/ |
| 239 | ASRC make-src/Makefile /^ASRC=empty.zz empty.zz.gz$/ | ||
| 253 | AST_Array::AST_Array cp-src/c.C /^AST_Array::AST_Array(UTL_ScopedName *n, unsigned l/ | 240 | AST_Array::AST_Array cp-src/c.C /^AST_Array::AST_Array(UTL_ScopedName *n, unsigned l/ |
| 254 | AST_ConcreteType::AST_ConcreteType cp-src/c.C /^AST_ConcreteType::AST_ConcreteType(AST_Decl::NodeT/ | 241 | AST_ConcreteType::AST_ConcreteType cp-src/c.C /^AST_ConcreteType::AST_ConcreteType(AST_Decl::NodeT/ |
| 255 | AST_Root cp-src/c.C 92 | 242 | AST_Root cp-src/c.C 92 |
| @@ -291,7 +278,7 @@ B cp-src/c.C /^void B::B() {}$/ | |||
| 291 | B cp-src/c.C 122 | 278 | B cp-src/c.C 122 |
| 292 | B cp-src/fail.C 8 | 279 | B cp-src/fail.C 8 |
| 293 | B cp-src/fail.C 24 | 280 | B cp-src/fail.C 24 |
| 294 | B ruby-src/test1.ruby /^ class B$/ | 281 | B ruby-src/test1.ru /^ class B$/ |
| 295 | BE_Node cp-src/c.C /^void BE_Node::BE_Node() {}$/ | 282 | BE_Node cp-src/c.C /^void BE_Node::BE_Node() {}$/ |
| 296 | BE_Node cp-src/c.C 77 | 283 | BE_Node cp-src/c.C 77 |
| 297 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 125 | 284 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 125 |
| @@ -340,7 +327,7 @@ CAR_SAFE c-src/emacs/src/lisp.h /^CAR_SAFE (Lisp_Object c)$/ | |||
| 340 | CATCHER c-src/emacs/src/lisp.h 3021 | 327 | CATCHER c-src/emacs/src/lisp.h 3021 |
| 341 | CDR c-src/emacs/src/lisp.h /^CDR (Lisp_Object c)$/ | 328 | CDR c-src/emacs/src/lisp.h /^CDR (Lisp_Object c)$/ |
| 342 | CDR_SAFE c-src/emacs/src/lisp.h /^CDR_SAFE (Lisp_Object c)$/ | 329 | CDR_SAFE c-src/emacs/src/lisp.h /^CDR_SAFE (Lisp_Object c)$/ |
| 343 | CFLAGS make-src/Makefile 88 | 330 | CFLAGS make-src/Makefile /^CFLAGS=${WARNINGS} -ansi -g3 # -pg -O$/ |
| 344 | CHAR c-src/etags.c /^#define CHAR(x) ((unsigned int)(x) & (CHARS - 1))/ | 331 | CHAR c-src/etags.c /^#define CHAR(x) ((unsigned int)(x) & (CHARS - 1))/ |
| 345 | CHAR y-src/cccp.c 7 | 332 | CHAR y-src/cccp.c 7 |
| 346 | CHARACTERBITS c-src/emacs/src/lisp.h 2457 | 333 | CHARACTERBITS c-src/emacs/src/lisp.h 2457 |
| @@ -368,7 +355,8 @@ CHAR_TABLE_SET c-src/emacs/src/lisp.h /^CHAR_TABLE_SET (Lisp_Object ct, int idx, | |||
| 368 | CHAR_TABLE_STANDARD_SLOTS c-src/emacs/src/lisp.h 1697 | 355 | CHAR_TABLE_STANDARD_SLOTS c-src/emacs/src/lisp.h 1697 |
| 369 | CHAR_TYPE_SIZE cccp.y 87 | 356 | CHAR_TYPE_SIZE cccp.y 87 |
| 370 | CHAR_TYPE_SIZE y-src/cccp.y 87 | 357 | CHAR_TYPE_SIZE y-src/cccp.y 87 |
| 371 | CHECKEROPTS make-src/Makefile 92 | 358 | CHECKFLAGS make-src/Makefile /^CHECKFLAGS=-DDEBUG -Wno-unused-function$/ |
| 359 | CHECKOBJS make-src/Makefile /^CHECKOBJS=chkmalloc.o chkxm.o$/ | ||
| 372 | CHECK_ARRAY c-src/emacs/src/lisp.h /^CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate)/ | 360 | CHECK_ARRAY c-src/emacs/src/lisp.h /^CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate)/ |
| 373 | CHECK_BOOL_VECTOR c-src/emacs/src/lisp.h /^CHECK_BOOL_VECTOR (Lisp_Object x)$/ | 361 | CHECK_BOOL_VECTOR c-src/emacs/src/lisp.h /^CHECK_BOOL_VECTOR (Lisp_Object x)$/ |
| 374 | CHECK_BUFFER c-src/emacs/src/lisp.h /^CHECK_BUFFER (Lisp_Object x)$/ | 362 | CHECK_BUFFER c-src/emacs/src/lisp.h /^CHECK_BUFFER (Lisp_Object x)$/ |
| @@ -407,6 +395,7 @@ CK_REL_R parse.y /^#define CK_REL_R(x) if( ((x)>0 && MAX_ROW-(x)<cu/ | |||
| 407 | CMultiChannelCSC19_3D cp-src/c.C 2 | 395 | CMultiChannelCSC19_3D cp-src/c.C 2 |
| 408 | CNL c-src/etags.c /^#define CNL() \\$/ | 396 | CNL c-src/etags.c /^#define CNL() \\$/ |
| 409 | CNL_SAVE_DEFINEDEF c-src/etags.c /^#define CNL_SAVE_DEFINEDEF() \\$/ | 397 | CNL_SAVE_DEFINEDEF c-src/etags.c /^#define CNL_SAVE_DEFINEDEF() \\$/ |
| 398 | COBOLFLAGS make-src/Makefile /^COBOLFLAGS=--language=none --regex='\/.......[a-zA-/ | ||
| 410 | COLORS cp-src/screen.hpp 11 | 399 | COLORS cp-src/screen.hpp 11 |
| 411 | COMPILEDP c-src/emacs/src/lisp.h /^COMPILEDP (Lisp_Object a)$/ | 400 | COMPILEDP c-src/emacs/src/lisp.h /^COMPILEDP (Lisp_Object a)$/ |
| 412 | COMPILED_ARGLIST c-src/emacs/src/lisp.h 2431 | 401 | COMPILED_ARGLIST c-src/emacs/src/lisp.h 2431 |
| @@ -421,10 +410,15 @@ CONSTYPE_HEAP c-src/emacs/src/lisp.h 3739 | |||
| 421 | CONSTYPE_PURE c-src/emacs/src/lisp.h 3739 | 410 | CONSTYPE_PURE c-src/emacs/src/lisp.h 3739 |
| 422 | CONS_TO_INTEGER c-src/emacs/src/lisp.h /^#define CONS_TO_INTEGER(cons, type, var) \\$/ | 411 | CONS_TO_INTEGER c-src/emacs/src/lisp.h /^#define CONS_TO_INTEGER(cons, type, var) \\$/ |
| 423 | CONVERT_CHARSTRING_TO_VALUE pas-src/common.pas /^procedure CONVERT_CHARSTRING_TO_VALUE;(*($/ | 412 | CONVERT_CHARSTRING_TO_VALUE pas-src/common.pas /^procedure CONVERT_CHARSTRING_TO_VALUE;(*($/ |
| 424 | CPPFLAGS make-src/Makefile 49 | 413 | CPPFLAGS make-src/Makefile /^CPPFLAGS=${CHECKFLAGS} -DSTDC_HEADERS -DHAVE_GETCW/ |
| 414 | CPSRC make-src/Makefile /^CPSRC=c.C abstract.C abstract.H cfront.H burton.cp/ | ||
| 415 | CSRC make-src/Makefile /^CSRC=abbrev.c ..\/etags\/h.h .\/\/c.c torture.c getopt/ | ||
| 425 | CTAGS c-src/etags.c 146 | 416 | CTAGS c-src/etags.c 146 |
| 426 | CTAGS c-src/etags.c 147 | 417 | CTAGS c-src/etags.c 147 |
| 427 | CTAGS c-src/etags.c 149 | 418 | CTAGS c-src/etags.c 149 |
| 419 | CTAGS make-src/Makefile /^CTAGS: ctags ${infiles}$/ | ||
| 420 | CTAGS% make-src/Makefile /^CTAGS%: ctags% ${infiles}$/ | ||
| 421 | CTAGS13 CTAGS14 CTAGS15 make-src/Makefile /^CTAGS13 CTAGS14 CTAGS15: ctags% ${infiles}$/ | ||
| 428 | CYAN cp-src/screen.hpp 15 | 422 | CYAN cp-src/screen.hpp 15 |
| 429 | C_AUTO c-src/etags.c 2198 | 423 | C_AUTO c-src/etags.c 2198 |
| 430 | C_EXT c-src/etags.c 2193 | 424 | C_EXT c-src/etags.c 2193 |
| @@ -460,7 +454,7 @@ Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is privat | |||
| 460 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is$/ | 454 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is$/ |
| 461 | Configure pyt-src/server.py /^class Configure(Frame, ControlEdit):$/ | 455 | Configure pyt-src/server.py /^class Configure(Frame, ControlEdit):$/ |
| 462 | ConfirmQuit pyt-src/server.py /^def ConfirmQuit(frame, context):$/ | 456 | ConfirmQuit pyt-src/server.py /^def ConfirmQuit(frame, context):$/ |
| 463 | Constant ruby-src/test1.ruby 26 | 457 | Constant ruby-src/test1.ru 39 |
| 464 | ControlEdit pyt-src/server.py /^class ControlEdit(Frame):$/ | 458 | ControlEdit pyt-src/server.py /^class ControlEdit(Frame):$/ |
| 465 | Controls pyt-src/server.py /^class Controls:$/ | 459 | Controls pyt-src/server.py /^class Controls:$/ |
| 466 | CopyTextString pas-src/common.pas /^function CopyTextString;(*($/ | 460 | CopyTextString pas-src/common.pas /^function CopyTextString;(*($/ |
| @@ -522,9 +516,11 @@ DOS_NT c-src/etags.c 117 | |||
| 522 | DOS_NT c-src/etags.c 118 | 516 | DOS_NT c-src/etags.c 118 |
| 523 | DUMPED c-src/emacs/src/gmalloc.c 80 | 517 | DUMPED c-src/emacs/src/gmalloc.c 80 |
| 524 | Debug cp-src/functions.cpp /^void Debug ( int lineno, int level, char* func , c/ | 518 | Debug cp-src/functions.cpp /^void Debug ( int lineno, int level, char* func , c/ |
| 519 | Def_ ruby-src/test1.ru 12 | ||
| 525 | DisposeANameList pas-src/common.pas /^procedure DisposeANameList( $/ | 520 | DisposeANameList pas-src/common.pas /^procedure DisposeANameList( $/ |
| 526 | DisposeNameList pas-src/common.pas /^procedure DisposeNameList;$/ | 521 | DisposeNameList pas-src/common.pas /^procedure DisposeNameList;$/ |
| 527 | ELEM_I c-src/h.h 3 | 522 | ELEM_I c-src/h.h 3 |
| 523 | ELSRC make-src/Makefile /^ELSRC=TAGTEST.EL emacs\/lisp\/progmodes\/etags.el$/ | ||
| 528 | EMACS_INT c-src/emacs/src/lisp.h 91 | 524 | EMACS_INT c-src/emacs/src/lisp.h 91 |
| 529 | EMACS_INT c-src/emacs/src/lisp.h 96 | 525 | EMACS_INT c-src/emacs/src/lisp.h 96 |
| 530 | EMACS_INT c-src/emacs/src/lisp.h 103 | 526 | EMACS_INT c-src/emacs/src/lisp.h 103 |
| @@ -554,10 +550,16 @@ ENUM_BF c-src/emacs/src/lisp.h /^ ENUM_BF (specbind_tag) kind : CHAR_BIT;$/ | |||
| 554 | ENUM_BF c-src/emacs/src/lisp.h /^ ENUM_BF (specbind_tag) kind : CHAR_BIT;$/ | 550 | ENUM_BF c-src/emacs/src/lisp.h /^ ENUM_BF (specbind_tag) kind : CHAR_BIT;$/ |
| 555 | EQ c-src/emacs/src/lisp.h /^# define EQ(x, y) lisp_h_EQ (x, y)$/ | 551 | EQ c-src/emacs/src/lisp.h /^# define EQ(x, y) lisp_h_EQ (x, y)$/ |
| 556 | EQUAL y-src/cccp.c 12 | 552 | EQUAL y-src/cccp.c 12 |
| 553 | ERLSRC make-src/Makefile /^ERLSRC=gs_dialog.erl lines.erl lists.erl$/ | ||
| 557 | ERROR y-src/parse.y 303 | 554 | ERROR y-src/parse.y 303 |
| 558 | ERROR parse.y 303 | 555 | ERROR parse.y 303 |
| 559 | ERROR y-src/cccp.c 9 | 556 | ERROR y-src/cccp.c 9 |
| 557 | ETAGS make-src/Makefile /^ETAGS: FRC etags ${infiles}$/ | ||
| 558 | ETAGS% make-src/Makefile /^ETAGS%: FRC etags% ${infiles}$/ | ||
| 559 | ETAGS12 make-src/Makefile /^ETAGS12: etags12 ${infiles}$/ | ||
| 560 | ETAGS13 ETAGS14 ETAGS15 make-src/Makefile /^ETAGS13 ETAGS14 ETAGS15: etags% ${infiles}$/ | ||
| 560 | EXFUN c-src/emacs/src/lisp.h /^#define EXFUN(fnname, maxargs) \\$/ | 561 | EXFUN c-src/emacs/src/lisp.h /^#define EXFUN(fnname, maxargs) \\$/ |
| 562 | EXTAGS make-src/Makefile /^EXTAGS: extags ${infiles} Makefile$/ | ||
| 561 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 3497 | 563 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 3497 |
| 562 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 4372 | 564 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 4372 |
| 563 | EmptyNmStr pas-src/common.pas /^function EmptyNmStr(* : NameString*);$/ | 565 | EmptyNmStr pas-src/common.pas /^function EmptyNmStr(* : NameString*);$/ |
| @@ -570,8 +572,9 @@ Error_Information/t ada-src/2ataspri.ads /^ type Error_Information is new Inte | |||
| 570 | Exit_LL_Task/p ada-src/2ataspri.adb /^ procedure Exit_LL_Task is$/ | 572 | Exit_LL_Task/p ada-src/2ataspri.adb /^ procedure Exit_LL_Task is$/ |
| 571 | Exit_LL_Task/p ada-src/2ataspri.ads /^ procedure Exit_LL_Task;$/ | 573 | Exit_LL_Task/p ada-src/2ataspri.ads /^ procedure Exit_LL_Task;$/ |
| 572 | ExtractCommentInfo pas-src/common.pas /^procedure ExtractCommentInfo; (*($/ | 574 | ExtractCommentInfo pas-src/common.pas /^procedure ExtractCommentInfo; (*($/ |
| 573 | FASTCFLAGS make-src/Makefile 55 | 575 | FASTCFLAGS make-src/Makefile /^FASTCFLAGS=-O3 -finline-functions -ffast-math -fun/ |
| 574 | FILTER make-src/Makefile 58 | 576 | FASTCFLAGSWARN make-src/Makefile /^FASTCFLAGSWARN=${WARNINGS} -Werror ${FASTCFLAGS}$/ |
| 577 | FILTER make-src/Makefile /^FILTER=grep -v '\\.[Cchefy][lor]*,[1-9][0-9]*' || t/ | ||
| 575 | FINALIZERP c-src/emacs/src/lisp.h /^FINALIZERP (Lisp_Object x)$/ | 578 | FINALIZERP c-src/emacs/src/lisp.h /^FINALIZERP (Lisp_Object x)$/ |
| 576 | FINAL_FREE_BLOCKS c-src/emacs/src/gmalloc.c 135 | 579 | FINAL_FREE_BLOCKS c-src/emacs/src/gmalloc.c 135 |
| 577 | FIXNUM_BITS c-src/emacs/src/lisp.h 252 | 580 | FIXNUM_BITS c-src/emacs/src/lisp.h 252 |
| @@ -579,10 +582,13 @@ FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^#define FIXNUM_OVERFLOW_P(i) \\$/ | |||
| 579 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_O/ | 582 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_O/ |
| 580 | FLOATP c-src/emacs/src/lisp.h /^# define FLOATP(x) lisp_h_FLOATP (x)$/ | 583 | FLOATP c-src/emacs/src/lisp.h /^# define FLOATP(x) lisp_h_FLOATP (x)$/ |
| 581 | FLOAT_TO_STRING_BUFSIZE c-src/emacs/src/lisp.h 3927 | 584 | FLOAT_TO_STRING_BUFSIZE c-src/emacs/src/lisp.h 3927 |
| 585 | FORTHSRC make-src/Makefile /^FORTHSRC=test-forth.fth$/ | ||
| 582 | FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_var, list_var, v/ | 586 | FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_var, list_var, v/ |
| 583 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ | 587 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ |
| 584 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ | 588 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ |
| 589 | FRC make-src/Makefile /^FRC:;$/ | ||
| 585 | FREEFLOOD c-src/emacs/src/gmalloc.c 1858 | 590 | FREEFLOOD c-src/emacs/src/gmalloc.c 1858 |
| 591 | FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/ | ||
| 586 | FUN0 y-src/parse.y /^yylex FUN0()$/ | 592 | FUN0 y-src/parse.y /^yylex FUN0()$/ |
| 587 | FUN0 parse.y /^yylex FUN0()$/ | 593 | FUN0 parse.y /^yylex FUN0()$/ |
| 588 | FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/ | 594 | FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/ |
| @@ -653,6 +659,7 @@ GENERIC_PTR cccp.y 58 | |||
| 653 | GENERIC_PTR y-src/cccp.y 56 | 659 | GENERIC_PTR y-src/cccp.y 56 |
| 654 | GENERIC_PTR y-src/cccp.y 58 | 660 | GENERIC_PTR y-src/cccp.y 58 |
| 655 | GEQ y-src/cccp.c 15 | 661 | GEQ y-src/cccp.c 15 |
| 662 | GETOPTOBJS make-src/Makefile /^GETOPTOBJS= #getopt.o getopt1.o$/ | ||
| 656 | GREEN cp-src/screen.hpp 14 | 663 | GREEN cp-src/screen.hpp 14 |
| 657 | GROW_RAW_KEYBUF c-src/emacs/src/keyboard.c 119 | 664 | GROW_RAW_KEYBUF c-src/emacs/src/keyboard.c 119 |
| 658 | GatherControls pyt-src/server.py /^ def GatherControls(self):$/ | 665 | GatherControls pyt-src/server.py /^ def GatherControls(self):$/ |
| @@ -674,6 +681,7 @@ HASH_TABLE_SIZE c-src/emacs/src/lisp.h /^HASH_TABLE_SIZE (struct Lisp_Hash_Table | |||
| 674 | HASH_VALUE c-src/emacs/src/lisp.h /^HASH_VALUE (struct Lisp_Hash_Table *h, ptrdiff_t i/ | 681 | HASH_VALUE c-src/emacs/src/lisp.h /^HASH_VALUE (struct Lisp_Hash_Table *h, ptrdiff_t i/ |
| 675 | HAVE_NTGUI c-src/etags.c 116 | 682 | HAVE_NTGUI c-src/etags.c 116 |
| 676 | HEAP c-src/emacs/src/gmalloc.c 131 | 683 | HEAP c-src/emacs/src/gmalloc.c 131 |
| 684 | HTMLSRC make-src/Makefile /^HTMLSRC=softwarelibero.html index.shtml algrthms.h/ | ||
| 677 | HTML_help c-src/etags.c 584 | 685 | HTML_help c-src/etags.c 584 |
| 678 | HTML_labels c-src/etags.c /^HTML_labels (FILE *inf)$/ | 686 | HTML_labels c-src/etags.c /^HTML_labels (FILE *inf)$/ |
| 679 | HTML_suffixes c-src/etags.c 582 | 687 | HTML_suffixes c-src/etags.c 582 |
| @@ -729,10 +737,11 @@ IsControlChar pas-src/common.pas /^function IsControlChar; (*($/ | |||
| 729 | IsControlCharName pas-src/common.pas /^function IsControlCharName($/ | 737 | IsControlCharName pas-src/common.pas /^function IsControlCharName($/ |
| 730 | Is_Set/f ada-src/2ataspri.adb /^ function Is_Set (Cell : in TAS_Cell) return Bo/ | 738 | Is_Set/f ada-src/2ataspri.adb /^ function Is_Set (Cell : in TAS_Cell) return Bo/ |
| 731 | Is_Set/f ada-src/2ataspri.ads /^ function Is_Set (Cell : in TAS_Cell)/ | 739 | Is_Set/f ada-src/2ataspri.ads /^ function Is_Set (Cell : in TAS_Cell)/ |
| 740 | JAVASRC make-src/Makefile /^JAVASRC=AWTEMul.java KeyEve.java SMan.java SysCol./ | ||
| 732 | KBD_BUFFER_SIZE c-src/emacs/src/keyboard.c 82 | 741 | KBD_BUFFER_SIZE c-src/emacs/src/keyboard.c 82 |
| 733 | KBYTES objc-src/PackInsp.m 58 | 742 | KBYTES objc-src/PackInsp.m 58 |
| 734 | KEY_TO_CHAR c-src/emacs/src/keyboard.c /^#define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTE/ | 743 | KEY_TO_CHAR c-src/emacs/src/keyboard.c /^#define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTE/ |
| 735 | LATEST make-src/Makefile 1 | 744 | LATEST make-src/Makefile /^LATEST=17$/ |
| 736 | LCE_COMMENT php-src/lce_functions.php 13 | 745 | LCE_COMMENT php-src/lce_functions.php 13 |
| 737 | LCE_COMMENT_TOOL php-src/lce_functions.php 17 | 746 | LCE_COMMENT_TOOL php-src/lce_functions.php 17 |
| 738 | LCE_COMMENT_USER php-src/lce_functions.php 15 | 747 | LCE_COMMENT_USER php-src/lce_functions.php 15 |
| @@ -742,7 +751,7 @@ LCE_MSGSTR php-src/lce_functions.php 21 | |||
| 742 | LCE_TEXT php-src/lce_functions.php 23 | 751 | LCE_TEXT php-src/lce_functions.php 23 |
| 743 | LCE_UNKNOWN php-src/lce_functions.php 9 | 752 | LCE_UNKNOWN php-src/lce_functions.php 9 |
| 744 | LCE_WS php-src/lce_functions.php 11 | 753 | LCE_WS php-src/lce_functions.php 11 |
| 745 | LDFLAGS make-src/Makefile 50 | 754 | LDFLAGS make-src/Makefile /^LDFLAGS=#-static -lc_p$/ |
| 746 | LE y-src/parse.c 7 | 755 | LE y-src/parse.c 7 |
| 747 | LEQ y-src/cccp.c 14 | 756 | LEQ y-src/cccp.c 14 |
| 748 | LIGHTBLUE cp-src/screen.hpp 21 | 757 | LIGHTBLUE cp-src/screen.hpp 21 |
| @@ -795,6 +804,7 @@ LTGT cp-src/MDiagArray2.h 35 | |||
| 795 | LTGT cp-src/MDiagArray2.h 39 | 804 | LTGT cp-src/MDiagArray2.h 39 |
| 796 | LTGT cp-src/MDiagArray2.h 42 | 805 | LTGT cp-src/MDiagArray2.h 42 |
| 797 | LTGT cp-src/MDiagArray2.h 144 | 806 | LTGT cp-src/MDiagArray2.h 144 |
| 807 | LUASRC make-src/Makefile /^LUASRC=allegro.lua$/ | ||
| 798 | L_CELL y-src/parse.c 10 | 808 | L_CELL y-src/parse.c 10 |
| 799 | L_CONST y-src/parse.c 13 | 809 | L_CONST y-src/parse.c 13 |
| 800 | L_FN0 y-src/parse.c 14 | 810 | L_FN0 y-src/parse.c 14 |
| @@ -882,6 +892,8 @@ MAGENTA cp-src/screen.hpp 17 | |||
| 882 | MAGICBYTE c-src/emacs/src/gmalloc.c 1856 | 892 | MAGICBYTE c-src/emacs/src/gmalloc.c 1856 |
| 883 | MAGICFREE c-src/emacs/src/gmalloc.c 1855 | 893 | MAGICFREE c-src/emacs/src/gmalloc.c 1855 |
| 884 | MAGICWORD c-src/emacs/src/gmalloc.c 1854 | 894 | MAGICWORD c-src/emacs/src/gmalloc.c 1854 |
| 895 | MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/ | ||
| 896 | MAKESRC make-src/Makefile /^MAKESRC=Makefile$/ | ||
| 885 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1857 | 897 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1857 |
| 886 | MANY c-src/emacs/src/lisp.h 2833 | 898 | MANY c-src/emacs/src/lisp.h 2833 |
| 887 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ | 899 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ |
| @@ -962,7 +974,7 @@ NILP c-src/emacs/src/lisp.h /^# define NILP(x) lisp_h_NILP (x)$/ | |||
| 962 | NIL_IS_ZERO c-src/emacs/src/lisp.h 1515 | 974 | NIL_IS_ZERO c-src/emacs/src/lisp.h 1515 |
| 963 | NONPOINTER_BITS c-src/emacs/src/lisp.h 78 | 975 | NONPOINTER_BITS c-src/emacs/src/lisp.h 78 |
| 964 | NONPOINTER_BITS c-src/emacs/src/lisp.h 80 | 976 | NONPOINTER_BITS c-src/emacs/src/lisp.h 80 |
| 965 | NONSRCS make-src/Makefile 35 | 977 | NONSRCS make-src/Makefile /^NONSRCS=entry.strange lists.erl clheir.hpp.gz$/ |
| 966 | NOTEQUAL y-src/cccp.c 13 | 978 | NOTEQUAL y-src/cccp.c 13 |
| 967 | NULL cccp.y 51 | 979 | NULL cccp.y 51 |
| 968 | NULL y-src/cccp.y 51 | 980 | NULL y-src/cccp.y 51 |
| @@ -978,14 +990,22 @@ NewLayerSet lua-src/allegro.lua /^function NewLayerSet (name)$/ | |||
| 978 | NewNameString pas-src/common.pas /^procedure NewNameString; (* (var NSP: NameStringPo/ | 990 | NewNameString pas-src/common.pas /^procedure NewNameString; (* (var NSP: NameStringPo/ |
| 979 | NmStrToErrStr pas-src/common.pas /^function NmStrToErrStr;(*($/ | 991 | NmStrToErrStr pas-src/common.pas /^function NmStrToErrStr;(*($/ |
| 980 | NmStrToInteger pas-src/common.pas /^function NmStrToInteger; (* (Str : NameString) : i/ | 992 | NmStrToInteger pas-src/common.pas /^function NmStrToInteger; (* (Str : NameString) : i/ |
| 993 | OBJCPPSRC make-src/Makefile /^OBJCPPSRC=SimpleCalc.H SimpleCalc.M$/ | ||
| 994 | OBJCSRC make-src/Makefile /^OBJCSRC=Subprocess.h Subprocess.m PackInsp.h PackI/ | ||
| 995 | OBJS make-src/Makefile /^OBJS=${GETOPTOBJS} ${REGEXOBJS} ${CHECKOBJS}$/ | ||
| 981 | OPENBUTTON objc-src/PackInsp.m 47 | 996 | OPENBUTTON objc-src/PackInsp.m 47 |
| 997 | OPTIONS make-src/Makefile /^OPTIONS=--members --declarations --regex=@regexfil/ | ||
| 982 | OR y-src/cccp.c 10 | 998 | OR y-src/cccp.c 10 |
| 999 | OTAGS make-src/Makefile /^OTAGS: oetags ${SRCS} srclist$/ | ||
| 983 | OVERLAYP c-src/emacs/src/lisp.h /^OVERLAYP (Lisp_Object x)$/ | 1000 | OVERLAYP c-src/emacs/src/lisp.h /^OVERLAYP (Lisp_Object x)$/ |
| 984 | Objc_help c-src/etags.c 613 | 1001 | Objc_help c-src/etags.c 613 |
| 985 | Objc_suffixes c-src/etags.c 609 | 1002 | Objc_suffixes c-src/etags.c 609 |
| 986 | OperatorFun c-src/h.h 88 | 1003 | OperatorFun c-src/h.h 88 |
| 987 | Overview tex-src/gzip.texi /^@node Overview, Sample, Copying, Top$/ | 1004 | Overview tex-src/gzip.texi /^@node Overview, Sample, Copying, Top$/ |
| 1005 | PASSRC make-src/Makefile /^PASSRC=common.pas$/ | ||
| 988 | PDT c-src/h.h /^ Date 04 May 87 235311 PDT (Mon)$/ | 1006 | PDT c-src/h.h /^ Date 04 May 87 235311 PDT (Mon)$/ |
| 1007 | PERLSRC make-src/Makefile /^PERLSRC=htlmify-cystic yagrip.pl kai-test.pl mirro/ | ||
| 1008 | PHPSRC make-src/Makefile /^PHPSRC=lce_functions.php ptest.php sendmail.php$/ | ||
| 989 | PHP_functions c-src/etags.c /^PHP_functions (FILE *inf)$/ | 1009 | PHP_functions c-src/etags.c /^PHP_functions (FILE *inf)$/ |
| 990 | PHP_help c-src/etags.c 639 | 1010 | PHP_help c-src/etags.c 639 |
| 991 | PHP_suffixes c-src/etags.c 637 | 1011 | PHP_suffixes c-src/etags.c 637 |
| @@ -996,8 +1016,10 @@ PORManager php-src/lce_functions.php 498 | |||
| 996 | PORManager php-src/lce_functions.php /^ function PORManager()$/ | 1016 | PORManager php-src/lce_functions.php /^ function PORManager()$/ |
| 997 | POReader php-src/lce_functions.php 163 | 1017 | POReader php-src/lce_functions.php 163 |
| 998 | POReader php-src/lce_functions.php /^ function POReader($domain, $filename)$/ | 1018 | POReader php-src/lce_functions.php /^ function POReader($domain, $filename)$/ |
| 1019 | POSTSCRIPTFLAGS make-src/Makefile /^POSTSCRIPTFLAGS=--language=none --regex='#\/[^ \\t{]/ | ||
| 999 | PRINT_UNDOCUMENTED_OPTIONS_HELP c-src/etags.c 804 | 1020 | PRINT_UNDOCUMENTED_OPTIONS_HELP c-src/etags.c 804 |
| 1000 | PROCESSP c-src/emacs/src/lisp.h /^PROCESSP (Lisp_Object a)$/ | 1021 | PROCESSP c-src/emacs/src/lisp.h /^PROCESSP (Lisp_Object a)$/ |
| 1022 | PROLSRC make-src/Makefile /^PROLSRC=ordsets.prolog natded.prolog$/ | ||
| 1001 | PROP c-src/emacs/src/keyboard.c /^#define PROP(IDX) AREF (tool_bar_item_properties, / | 1023 | PROP c-src/emacs/src/keyboard.c /^#define PROP(IDX) AREF (tool_bar_item_properties, / |
| 1002 | PROP c-src/emacs/src/keyboard.c 8379 | 1024 | PROP c-src/emacs/src/keyboard.c 8379 |
| 1003 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) protect_malloc_/ | 1025 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) protect_malloc_/ |
| @@ -1015,6 +1037,7 @@ PSEUDOVECTOR_REST_MASK c-src/emacs/src/lisp.h 814 | |||
| 1015 | PSEUDOVECTOR_SIZE_BITS c-src/emacs/src/lisp.h 808 | 1037 | PSEUDOVECTOR_SIZE_BITS c-src/emacs/src/lisp.h 808 |
| 1016 | PSEUDOVECTOR_SIZE_MASK c-src/emacs/src/lisp.h 809 | 1038 | PSEUDOVECTOR_SIZE_MASK c-src/emacs/src/lisp.h 809 |
| 1017 | PSEUDOVECTOR_TYPEP c-src/emacs/src/lisp.h /^PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, i/ | 1039 | PSEUDOVECTOR_TYPEP c-src/emacs/src/lisp.h /^PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, i/ |
| 1040 | PSSRC make-src/Makefile /^PSSRC=rfc1245.ps$/ | ||
| 1018 | PS_functions c-src/etags.c /^PS_functions (FILE *inf)$/ | 1041 | PS_functions c-src/etags.c /^PS_functions (FILE *inf)$/ |
| 1019 | PS_help c-src/etags.c 649 | 1042 | PS_help c-src/etags.c 649 |
| 1020 | PS_suffixes c-src/etags.c 647 | 1043 | PS_suffixes c-src/etags.c 647 |
| @@ -1039,6 +1062,7 @@ PVEC_TERMINAL c-src/emacs/src/lisp.h 790 | |||
| 1039 | PVEC_TYPE_MASK c-src/emacs/src/lisp.h 819 | 1062 | PVEC_TYPE_MASK c-src/emacs/src/lisp.h 819 |
| 1040 | PVEC_WINDOW c-src/emacs/src/lisp.h 786 | 1063 | PVEC_WINDOW c-src/emacs/src/lisp.h 786 |
| 1041 | PVEC_WINDOW_CONFIGURATION c-src/emacs/src/lisp.h 791 | 1064 | PVEC_WINDOW_CONFIGURATION c-src/emacs/src/lisp.h 791 |
| 1065 | PYTSRC make-src/Makefile /^PYTSRC=server.py$/ | ||
| 1042 | PackageInspector objc-src/PackInsp.h /^@interface PackageInspector:WMInspector$/ | 1066 | PackageInspector objc-src/PackInsp.h /^@interface PackageInspector:WMInspector$/ |
| 1043 | Pascal_functions c-src/etags.c /^Pascal_functions (FILE *inf)$/ | 1067 | Pascal_functions c-src/etags.c /^Pascal_functions (FILE *inf)$/ |
| 1044 | Pascal_help c-src/etags.c 621 | 1068 | Pascal_help c-src/etags.c 621 |
| @@ -1133,6 +1157,8 @@ RECC_UPPER c-src/emacs/src/regex.h 612 | |||
| 1133 | RECC_WORD c-src/emacs/src/regex.h 610 | 1157 | RECC_WORD c-src/emacs/src/regex.h 610 |
| 1134 | RECC_XDIGIT c-src/emacs/src/regex.h 614 | 1158 | RECC_XDIGIT c-src/emacs/src/regex.h 614 |
| 1135 | RED cp-src/screen.hpp 16 | 1159 | RED cp-src/screen.hpp 16 |
| 1160 | REGEX make-src/Makefile /^REGEX=\/[ \\t]*DEFVAR_[A-Z_ \\t\\n(]+"\\([^"]+\\)"\/$/ | ||
| 1161 | REGEXOBJS make-src/Makefile /^REGEXOBJS=regex.o$/ | ||
| 1136 | REGS_FIXED c-src/emacs/src/regex.h 378 | 1162 | REGS_FIXED c-src/emacs/src/regex.h 378 |
| 1137 | REGS_REALLOCATE c-src/emacs/src/regex.h 377 | 1163 | REGS_REALLOCATE c-src/emacs/src/regex.h 377 |
| 1138 | REGS_UNALLOCATED c-src/emacs/src/regex.h 376 | 1164 | REGS_UNALLOCATED c-src/emacs/src/regex.h 376 |
| @@ -1162,6 +1188,7 @@ REG_NOMATCH c-src/emacs/src/regex.h 301 | |||
| 1162 | REG_NOSUB c-src/emacs/src/regex.h 276 | 1188 | REG_NOSUB c-src/emacs/src/regex.h 276 |
| 1163 | REG_NOTBOL c-src/emacs/src/regex.h 286 | 1189 | REG_NOTBOL c-src/emacs/src/regex.h 286 |
| 1164 | REG_NOTEOL c-src/emacs/src/regex.h 289 | 1190 | REG_NOTEOL c-src/emacs/src/regex.h 289 |
| 1191 | RELEASELIST make-src/Makefile /^RELEASELIST=pot@gnu.org xemacs-review@xemacs.org j/ | ||
| 1165 | RESUME_POLLING c-src/emacs/src/keyboard.c 2170 | 1192 | RESUME_POLLING c-src/emacs/src/keyboard.c 2170 |
| 1166 | RETURN_UNGCPRO c-src/emacs/src/lisp.h /^#define RETURN_UNGCPRO(expr) \\$/ | 1193 | RETURN_UNGCPRO c-src/emacs/src/lisp.h /^#define RETURN_UNGCPRO(expr) \\$/ |
| 1167 | RE_BACKSLASH_ESCAPE_IN_LISTS c-src/emacs/src/regex.h 47 | 1194 | RE_BACKSLASH_ESCAPE_IN_LISTS c-src/emacs/src/regex.h 47 |
| @@ -1207,6 +1234,9 @@ RE_TRANSLATE_TYPE c-src/emacs/src/regex.h 332 | |||
| 1207 | RE_UNMATCHED_RIGHT_PAREN_ORD c-src/emacs/src/regex.h 136 | 1234 | RE_UNMATCHED_RIGHT_PAREN_ORD c-src/emacs/src/regex.h 136 |
| 1208 | RSH y-src/cccp.c 17 | 1235 | RSH y-src/cccp.c 17 |
| 1209 | RTE/s ada-src/2ataspri.adb /^ package RTE renames Interfaces.C.POSIX_RTE;$/ | 1236 | RTE/s ada-src/2ataspri.adb /^ package RTE renames Interfaces.C.POSIX_RTE;$/ |
| 1237 | RUN make-src/Makefile /^RUN=time --quiet --format '%U + %S: %E'$/ | ||
| 1238 | RUN make-src/Makefile /^RUN=$/ | ||
| 1239 | RXINCLUDE make-src/Makefile /^RXINCLUDE=-Iemacs\/src$/ | ||
| 1210 | Range cp-src/Range.h 35 | 1240 | Range cp-src/Range.h 35 |
| 1211 | Range cp-src/Range.h /^ Range (void)$/ | 1241 | Range cp-src/Range.h /^ Range (void)$/ |
| 1212 | Range cp-src/Range.h /^ Range (const Range& r)$/ | 1242 | Range cp-src/Range.h /^ Range (const Range& r)$/ |
| @@ -1274,6 +1304,7 @@ SPECPDL_UNWIND c-src/emacs/src/lisp.h 2944 | |||
| 1274 | SPECPDL_UNWIND_INT c-src/emacs/src/lisp.h 2946 | 1304 | SPECPDL_UNWIND_INT c-src/emacs/src/lisp.h 2946 |
| 1275 | SPECPDL_UNWIND_PTR c-src/emacs/src/lisp.h 2945 | 1305 | SPECPDL_UNWIND_PTR c-src/emacs/src/lisp.h 2945 |
| 1276 | SPECPDL_UNWIND_VOID c-src/emacs/src/lisp.h 2947 | 1306 | SPECPDL_UNWIND_VOID c-src/emacs/src/lisp.h 2947 |
| 1307 | SRCS make-src/Makefile /^SRCS=Makefile ${ADASRC} ${ASRC} ${CSRC} ${CPSRC} $/ | ||
| 1277 | SREF c-src/emacs/src/lisp.h /^SREF (Lisp_Object string, ptrdiff_t index)$/ | 1308 | SREF c-src/emacs/src/lisp.h /^SREF (Lisp_Object string, ptrdiff_t index)$/ |
| 1278 | SSDATA c-src/emacs/src/lisp.h /^SSDATA (Lisp_Object string)$/ | 1309 | SSDATA c-src/emacs/src/lisp.h /^SSDATA (Lisp_Object string)$/ |
| 1279 | SSET c-src/emacs/src/lisp.h /^SSET (Lisp_Object string, ptrdiff_t index, unsigne/ | 1310 | SSET c-src/emacs/src/lisp.h /^SSET (Lisp_Object string, ptrdiff_t index, unsigne/ |
| @@ -1343,15 +1374,16 @@ System.Task_Primitives/s ada-src/2ataspri.ads /^package System.Task_Primitives i | |||
| 1343 | T cp-src/fail.C 14 | 1374 | T cp-src/fail.C 14 |
| 1344 | T2 cp-src/fail.C 16 | 1375 | T2 cp-src/fail.C 16 |
| 1345 | T3 c.c 163 | 1376 | T3 c.c 163 |
| 1377 | TAGS make-src/Makefile /^TAGS: etags.c$/ | ||
| 1346 | TAG_PTR c-src/emacs/src/lisp.h /^#define TAG_PTR(tag, ptr) \\$/ | 1378 | TAG_PTR c-src/emacs/src/lisp.h /^#define TAG_PTR(tag, ptr) \\$/ |
| 1347 | TAG_SYMOFFSET c-src/emacs/src/lisp.h /^#define TAG_SYMOFFSET(offset) \\$/ | 1379 | TAG_SYMOFFSET c-src/emacs/src/lisp.h /^#define TAG_SYMOFFSET(offset) \\$/ |
| 1348 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is private;$/ | 1380 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is private;$/ |
| 1349 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is$/ | 1381 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is$/ |
| 1350 | TCB_Ptr/t ada-src/2ataspri.ads /^ type TCB_Ptr is access all Task_Control_Block;$/ | 1382 | TCB_Ptr/t ada-src/2ataspri.ads /^ type TCB_Ptr is access all Task_Control_Block;$/ |
| 1383 | TCLFLAGS make-src/Makefile /^TCLFLAGS=--lang=none --regex='\/proc[ \\t]+\\([^ \\t]+/ | ||
| 1351 | TERMINALP c-src/emacs/src/lisp.h /^TERMINALP (Lisp_Object a)$/ | 1384 | TERMINALP c-src/emacs/src/lisp.h /^TERMINALP (Lisp_Object a)$/ |
| 1352 | TEST php-src/ptest.php 1 | 1385 | TEST php-src/ptest.php 1 |
| 1353 | TEXTAGS make-src/Makefile 204 | 1386 | TEXSRC make-src/Makefile /^TEXSRC=testenv.tex gzip.texi texinfo.tex nonewline/ |
| 1354 | TEXTAGS make-src/Makefile 219 | ||
| 1355 | TEX_LESC c-src/etags.c 4986 | 1387 | TEX_LESC c-src/etags.c 4986 |
| 1356 | TEX_SESC c-src/etags.c 4987 | 1388 | TEX_SESC c-src/etags.c 4987 |
| 1357 | TEX_clgrp c-src/etags.c 4922 | 1389 | TEX_clgrp c-src/etags.c 4922 |
| @@ -1433,6 +1465,7 @@ VECTORP c-src/emacs/src/lisp.h /^VECTORP (Lisp_Object x)$/ | |||
| 1433 | VERSION c-src/etags.c 789 | 1465 | VERSION c-src/etags.c 789 |
| 1434 | VERSION erl-src/gs_dialog.erl /^-define(VERSION, '2001.1101').$/ | 1466 | VERSION erl-src/gs_dialog.erl /^-define(VERSION, '2001.1101').$/ |
| 1435 | VERSION objc-src/PackInsp.m 34 | 1467 | VERSION objc-src/PackInsp.m 34 |
| 1468 | VHDLFLAGS make-src/Makefile /^VHDLFLAGS=--language=none --regex='\/[ \\t]*\\(ARCHIT/ | ||
| 1436 | Vabbrev_start_location c-src/abbrev.c 63 | 1469 | Vabbrev_start_location c-src/abbrev.c 63 |
| 1437 | Vabbrev_start_location_buffer c-src/abbrev.c 66 | 1470 | Vabbrev_start_location_buffer c-src/abbrev.c 66 |
| 1438 | Vabbrev_table_name_list c-src/abbrev.c 43 | 1471 | Vabbrev_table_name_list c-src/abbrev.c 43 |
| @@ -1445,6 +1478,7 @@ Vlispy_mouse_stem c-src/emacs/src/keyboard.c 5172 | |||
| 1445 | Vpre_abbrev_expand_hook c-src/abbrev.c 83 | 1478 | Vpre_abbrev_expand_hook c-src/abbrev.c 83 |
| 1446 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4281 | 1479 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4281 |
| 1447 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4283 | 1480 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4283 |
| 1481 | WARNINGS make-src/Makefile /^WARNINGS=-pedantic -Wall -Wpointer-arith -Winline / | ||
| 1448 | WCHAR_TYPE_SIZE cccp.y 99 | 1482 | WCHAR_TYPE_SIZE cccp.y 99 |
| 1449 | WCHAR_TYPE_SIZE y-src/cccp.y 99 | 1483 | WCHAR_TYPE_SIZE y-src/cccp.y 99 |
| 1450 | WHITE cp-src/screen.hpp 27 | 1484 | WHITE cp-src/screen.hpp 27 |
| @@ -1457,6 +1491,7 @@ WorkingDays cp-src/functions.cpp /^int WorkingDays(Date a, Date b){$/ | |||
| 1457 | Write_Lock/p ada-src/2ataspri.adb /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | 1491 | Write_Lock/p ada-src/2ataspri.adb /^ procedure Write_Lock (L : in out Lock; Ceiling_/ |
| 1458 | Write_Lock/p ada-src/2ataspri.ads /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | 1492 | Write_Lock/p ada-src/2ataspri.ads /^ procedure Write_Lock (L : in out Lock; Ceiling_/ |
| 1459 | X c-src/h.h 100 | 1493 | X c-src/h.h 100 |
| 1494 | X ruby-src/test1.ru /^ def X$/ | ||
| 1460 | XBOOL_VECTOR c-src/emacs/src/lisp.h /^XBOOL_VECTOR (Lisp_Object a)$/ | 1495 | XBOOL_VECTOR c-src/emacs/src/lisp.h /^XBOOL_VECTOR (Lisp_Object a)$/ |
| 1461 | XBUFFER c-src/emacs/src/lisp.h /^XBUFFER (Lisp_Object a)$/ | 1496 | XBUFFER c-src/emacs/src/lisp.h /^XBUFFER (Lisp_Object a)$/ |
| 1462 | XBUFFER_OBJFWD c-src/emacs/src/lisp.h /^XBUFFER_OBJFWD (union Lisp_Fwd *a)$/ | 1497 | XBUFFER_OBJFWD c-src/emacs/src/lisp.h /^XBUFFER_OBJFWD (union Lisp_Fwd *a)$/ |
| @@ -1534,9 +1569,11 @@ XUNTAG c-src/emacs/src/lisp.h /^# define XUNTAG(a, type) lisp_h_XUNTAG (a, type | |||
| 1534 | XUNTAG c-src/emacs/src/lisp.h /^XUNTAG (Lisp_Object a, int type)$/ | 1569 | XUNTAG c-src/emacs/src/lisp.h /^XUNTAG (Lisp_Object a, int type)$/ |
| 1535 | XWINDOW c-src/emacs/src/lisp.h /^XWINDOW (Lisp_Object a)$/ | 1570 | XWINDOW c-src/emacs/src/lisp.h /^XWINDOW (Lisp_Object a)$/ |
| 1536 | XX cp-src/x.cc 1 | 1571 | XX cp-src/x.cc 1 |
| 1572 | Xyzzy ruby-src/test1.ru 13 | ||
| 1537 | Y c-src/h.h 100 | 1573 | Y c-src/h.h 100 |
| 1538 | YACC c-src/etags.c 2199 | 1574 | YACC c-src/etags.c 2199 |
| 1539 | YELLOW cp-src/screen.hpp 26 | 1575 | YELLOW cp-src/screen.hpp 26 |
| 1576 | YSRC make-src/Makefile /^YSRC=parse.y parse.c atest.y cccp.c cccp.y$/ | ||
| 1540 | YYABORT /usr/share/bison/bison.simple 153 | 1577 | YYABORT /usr/share/bison/bison.simple 153 |
| 1541 | YYABORT /usr/share/bison/bison.simple 154 | 1578 | YYABORT /usr/share/bison/bison.simple 154 |
| 1542 | YYACCEPT /usr/share/bison/bison.simple 152 | 1579 | YYACCEPT /usr/share/bison/bison.simple 152 |
| @@ -2359,7 +2396,7 @@ __str__ pyt-src/server.py /^ def __str__(self):$/ | |||
| 2359 | __up c.c 160 | 2396 | __up c.c 160 |
| 2360 | _aligned_blocks c-src/emacs/src/gmalloc.c 1004 | 2397 | _aligned_blocks c-src/emacs/src/gmalloc.c 1004 |
| 2361 | _aligned_blocks_mutex c-src/emacs/src/gmalloc.c 518 | 2398 | _aligned_blocks_mutex c-src/emacs/src/gmalloc.c 518 |
| 2362 | _bar? ruby-src/test1.ruby /^ def self._bar?(abc)$/ | 2399 | _bar? ruby-src/test1.ru /^ def self._bar?(abc)$/ |
| 2363 | _bytes_free c-src/emacs/src/gmalloc.c 376 | 2400 | _bytes_free c-src/emacs/src/gmalloc.c 376 |
| 2364 | _bytes_used c-src/emacs/src/gmalloc.c 374 | 2401 | _bytes_used c-src/emacs/src/gmalloc.c 374 |
| 2365 | _chunks_free c-src/emacs/src/gmalloc.c 375 | 2402 | _chunks_free c-src/emacs/src/gmalloc.c 375 |
| @@ -2388,7 +2425,7 @@ a c.c /^a ()$/ | |||
| 2388 | a c-src/h.h 40 | 2425 | a c-src/h.h 40 |
| 2389 | a c-src/h.h 103 | 2426 | a c-src/h.h 103 |
| 2390 | a cp-src/c.C 132 | 2427 | a cp-src/c.C 132 |
| 2391 | a ruby-src/test1.ruby /^ def a()$/ | 2428 | a ruby-src/test1.ru /^ def a()$/ |
| 2392 | a-forth-constant! forth-src/test-forth.fth /^99 constant a-forth-constant!$/ | 2429 | a-forth-constant! forth-src/test-forth.fth /^99 constant a-forth-constant!$/ |
| 2393 | a-forth-value? forth-src/test-forth.fth /^55 value a-forth-value?$/ | 2430 | a-forth-value? forth-src/test-forth.fth /^55 value a-forth-value?$/ |
| 2394 | a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- a*b+c ) + * ;$/ | 2431 | a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- a*b+c ) + * ;$/ |
| @@ -2513,16 +2550,18 @@ b c-src/h.h 41 | |||
| 2513 | b c-src/h.h 103 | 2550 | b c-src/h.h 103 |
| 2514 | b c-src/h.h 104 | 2551 | b c-src/h.h 104 |
| 2515 | b cp-src/c.C 132 | 2552 | b cp-src/c.C 132 |
| 2516 | b ruby-src/test1.ruby /^ def b()$/ | 2553 | b ruby-src/test1.ru /^ def b()$/ |
| 2517 | backslash=0 tex-src/texinfo.tex /^\\let\\indexbackslash=0 %overridden during \\printin/ | 2554 | backslash=0 tex-src/texinfo.tex /^\\let\\indexbackslash=0 %overridden during \\printin/ |
| 2518 | bar c-src/c.c /^void bar() {while(0) {}}$/ | 2555 | bar c-src/c.c /^void bar() {while(0) {}}$/ |
| 2519 | bar c.c 143 | 2556 | bar c.c 143 |
| 2520 | bar c-src/h.h 19 | 2557 | bar c-src/h.h 19 |
| 2521 | bar cp-src/x.cc /^XX::bar()$/ | 2558 | bar cp-src/x.cc /^XX::bar()$/ |
| 2559 | bar= ruby-src/test1.ru /^ attr_writer :bar,$/ | ||
| 2522 | bas_syn prol-src/natded.prolog /^bas_syn(n(_)).$/ | 2560 | bas_syn prol-src/natded.prolog /^bas_syn(n(_)).$/ |
| 2523 | base c-src/emacs/src/lisp.h 2188 | 2561 | base c-src/emacs/src/lisp.h 2188 |
| 2524 | base cp-src/c.C /^double base (void) const { return rng_base; }$/ | 2562 | base cp-src/c.C /^double base (void) const { return rng_base; }$/ |
| 2525 | base cp-src/Range.h /^ double base (void) const { return rng_base; }$/ | 2563 | base cp-src/Range.h /^ double base (void) const { return rng_base; }$/ |
| 2564 | baz= ruby-src/test1.ru /^ :baz,$/ | ||
| 2526 | bb c.c 275 | 2565 | bb c.c 275 |
| 2527 | bbb c.c 251 | 2566 | bbb c.c 251 |
| 2528 | bbbbbb c-src/h.h 113 | 2567 | bbbbbb c-src/h.h 113 |
| @@ -2593,7 +2632,6 @@ bytes_used c-src/emacs/src/gmalloc.c 312 | |||
| 2593 | c c.c 180 | 2632 | c c.c 180 |
| 2594 | c c-src/h.h /^#define c() d$/ | 2633 | c c-src/h.h /^#define c() d$/ |
| 2595 | c c-src/h.h 106 | 2634 | c c-src/h.h 106 |
| 2596 | c make-src/Makefile 222 | ||
| 2597 | c_ext c-src/etags.c 2271 | 2635 | c_ext c-src/etags.c 2271 |
| 2598 | caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/ | 2636 | caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/ |
| 2599 | cacheLRUEntry_s c.c 172 | 2637 | cacheLRUEntry_s c.c 172 |
| @@ -2623,6 +2661,7 @@ charset_unibyte c-src/emacs/src/regex.h 410 | |||
| 2623 | chartonmstr pas-src/common.pas /^function chartonmstr; (*($/ | 2661 | chartonmstr pas-src/common.pas /^function chartonmstr; (*($/ |
| 2624 | checkQuotation php-src/lce_functions.php /^ function checkQuotation($str)$/ | 2662 | checkQuotation php-src/lce_functions.php /^ function checkQuotation($str)$/ |
| 2625 | check_cons_list c-src/emacs/src/lisp.h /^# define check_cons_list() lisp_h_check_cons_list/ | 2663 | check_cons_list c-src/emacs/src/lisp.h /^# define check_cons_list() lisp_h_check_cons_list/ |
| 2664 | checker make-src/Makefile /^checker:$/ | ||
| 2626 | checkhdr c-src/emacs/src/gmalloc.c /^checkhdr (const struct hdr *hdr)$/ | 2665 | checkhdr c-src/emacs/src/gmalloc.c /^checkhdr (const struct hdr *hdr)$/ |
| 2627 | checkiso html-src/software.html /^checkiso$/ | 2666 | checkiso html-src/software.html /^checkiso$/ |
| 2628 | childDidExit objc-src/Subprocess.m /^- childDidExit$/ | 2667 | childDidExit objc-src/Subprocess.m /^- childDidExit$/ |
| @@ -2631,6 +2670,7 @@ chunks_used c-src/emacs/src/gmalloc.c 311 | |||
| 2631 | cjava c-src/etags.c 2936 | 2670 | cjava c-src/etags.c 2936 |
| 2632 | class_method ruby-src/test.rb /^ def ClassExample.class_method$/ | 2671 | class_method ruby-src/test.rb /^ def ClassExample.class_method$/ |
| 2633 | classifyLine php-src/lce_functions.php /^ function classifyLine($line)$/ | 2672 | classifyLine php-src/lce_functions.php /^ function classifyLine($line)$/ |
| 2673 | clean make-src/Makefile /^clean:$/ | ||
| 2634 | clear cp-src/conway.hpp /^ void clear(void) { alive = 0; }$/ | 2674 | clear cp-src/conway.hpp /^ void clear(void) { alive = 0; }$/ |
| 2635 | clear-abbrev-table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | 2675 | clear-abbrev-table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / |
| 2636 | clear-this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | 2676 | clear-this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ |
| @@ -2691,6 +2731,7 @@ createWidgets pyt-src/server.py /^ def createWidgets(self):$/ | |||
| 2691 | cscInitTime cp-src/c.C 7 | 2731 | cscInitTime cp-src/c.C 7 |
| 2692 | cscSegmentationTime cp-src/c.C 8 | 2732 | cscSegmentationTime cp-src/c.C 8 |
| 2693 | cstack c-src/etags.c 2523 | 2733 | cstack c-src/etags.c 2523 |
| 2734 | ctags make-src/Makefile /^ctags: etags.c ${OBJS}$/ | ||
| 2694 | curlb c-src/etags.c 2929 | 2735 | curlb c-src/etags.c 2929 |
| 2695 | curlinepos c-src/etags.c 2931 | 2736 | curlinepos c-src/etags.c 2931 |
| 2696 | current-idle-time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | 2737 | current-idle-time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ |
| @@ -2828,6 +2869,7 @@ error y-src/cccp.y /^error (msg)$/ | |||
| 2828 | error_signaled c-src/etags.c 264 | 2869 | error_signaled c-src/etags.c 264 |
| 2829 | etags el-src/emacs/lisp/progmodes/etags.el /^(defgroup etags nil "Tags tables."$/ | 2870 | etags el-src/emacs/lisp/progmodes/etags.el /^(defgroup etags nil "Tags tables."$/ |
| 2830 | etags html-src/software.html /^Etags$/ | 2871 | etags html-src/software.html /^Etags$/ |
| 2872 | etags make-src/Makefile /^etags: etags.c ${OBJS}$/ | ||
| 2831 | etags--xref-find-definitions el-src/emacs/lisp/progmodes/etags.el /^(defun etags--xref-find-definitions (pattern &opti/ | 2873 | etags--xref-find-definitions el-src/emacs/lisp/progmodes/etags.el /^(defun etags--xref-find-definitions (pattern &opti/ |
| 2832 | etags--xref-limit el-src/emacs/lisp/progmodes/etags.el /^(defconst etags--xref-limit 1000)$/ | 2874 | etags--xref-limit el-src/emacs/lisp/progmodes/etags.el /^(defconst etags--xref-limit 1000)$/ |
| 2833 | etags-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-file-of-tag (&optional relative) ; Do/ | 2875 | etags-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-file-of-tag (&optional relative) ; Do/ |
| @@ -2843,6 +2885,7 @@ etags-tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags- | |||
| 2843 | etags-verify-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-verify-tags-table ()$/ | 2885 | etags-verify-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-verify-tags-table ()$/ |
| 2844 | etags-xref-find el-src/emacs/lisp/progmodes/etags.el /^(defun etags-xref-find (action id)$/ | 2886 | etags-xref-find el-src/emacs/lisp/progmodes/etags.el /^(defun etags-xref-find (action id)$/ |
| 2845 | etags-xref-find-definitions-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar etags-xref-find-definitions-tag-order '(ta/ | 2887 | etags-xref-find-definitions-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar etags-xref-find-definitions-tag-order '(ta/ |
| 2888 | etags.1.man make-src/Makefile /^etags.1.man: etags.1$/ | ||
| 2846 | etags_getcwd c-src/etags.c /^etags_getcwd (void)$/ | 2889 | etags_getcwd c-src/etags.c /^etags_getcwd (void)$/ |
| 2847 | eval_dyn c-src/emacs/src/keyboard.c /^eval_dyn (Lisp_Object form)$/ | 2890 | eval_dyn c-src/emacs/src/keyboard.c /^eval_dyn (Lisp_Object form)$/ |
| 2848 | event-convert-list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | 2891 | event-convert-list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / |
| @@ -2890,6 +2933,8 @@ f cp-src/fail.C /^int A::B::f() { return 2; }$/ | |||
| 2890 | f1 c.c /^ f1 () { \/* Do something. *\/; }$/ | 2933 | f1 c.c /^ f1 () { \/* Do something. *\/; }$/ |
| 2891 | f2 c.c /^void f2 () { \/* Do something. *\/; }$/ | 2934 | f2 c.c /^void f2 () { \/* Do something. *\/; }$/ |
| 2892 | fast_string_match_ignore_case c-src/emacs/src/lisp.h /^fast_string_match_ignore_case (Lisp_Object regexp,/ | 2935 | 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:$/ | ||
| 2937 | fastetags make-src/Makefile /^fastetags:$/ | ||
| 2893 | fastmap c-src/emacs/src/regex.h 355 | 2938 | fastmap c-src/emacs/src/regex.h 355 |
| 2894 | fastmap_accurate c-src/emacs/src/regex.h 383 | 2939 | fastmap_accurate c-src/emacs/src/regex.h 383 |
| 2895 | fatal c-src/etags.c /^fatal (const char *s1, const char *s2)$/ | 2940 | fatal c-src/etags.c /^fatal (const char *s1, const char *s2)$/ |
| @@ -2962,7 +3007,8 @@ foo f-src/entry.for /^ character*(*) function foo()$/ | |||
| 2962 | foo f-src/entry.strange_suffix /^ character*(*) function foo()$/ | 3007 | foo f-src/entry.strange_suffix /^ character*(*) function foo()$/ |
| 2963 | foo f-src/entry.strange /^ character*(*) function foo()$/ | 3008 | foo f-src/entry.strange /^ character*(*) function foo()$/ |
| 2964 | foo php-src/ptest.php /^foo()$/ | 3009 | foo php-src/ptest.php /^foo()$/ |
| 2965 | foo! ruby-src/test1.ruby /^ def foo!$/ | 3010 | foo ruby-src/test1.ru /^ attr_reader :foo$/ |
| 3011 | foo! ruby-src/test1.ru /^ def foo!$/ | ||
| 2966 | foobar c-src/c.c /^int foobar() {;}$/ | 3012 | foobar c-src/c.c /^int foobar() {;}$/ |
| 2967 | foobar c.c /^extern void foobar (void) __attribute__ ((section / | 3013 | foobar c.c /^extern void foobar (void) __attribute__ ((section / |
| 2968 | foobar2 c-src/h.h 20 | 3014 | foobar2 c-src/h.h 20 |
| @@ -3037,6 +3083,8 @@ get_layer_by_name lua-src/allegro.lua /^local function get_layer_by_name (sprite | |||
| 3037 | get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/ | 3083 | get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/ |
| 3038 | get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/ | 3084 | get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/ |
| 3039 | getcjmp c-src/emacs/src/keyboard.c 147 | 3085 | getcjmp c-src/emacs/src/keyboard.c 147 |
| 3086 | getopt.o make-src/Makefile /^getopt.o: emacs\/lib-src\/getopt.c$/ | ||
| 3087 | getopt1.o make-src/Makefile /^getopt1.o: emacs\/lib-src\/getopt1.c$/ | ||
| 3040 | getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/ | 3088 | getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/ |
| 3041 | gettext php-src/lce_functions.php /^ function gettext($msgid)$/ | 3089 | gettext php-src/lce_functions.php /^ function gettext($msgid)$/ |
| 3042 | ggg c-src/h.h 10 | 3090 | ggg c-src/h.h 10 |
| @@ -3109,6 +3157,7 @@ inc cp-src/Range.h /^ double inc (void) const { return rng_inc; }$/ | |||
| 3109 | index c-src/emacs/src/lisp.h 1856 | 3157 | index c-src/emacs/src/lisp.h 1856 |
| 3110 | infabsdir c-src/etags.c 206 | 3158 | infabsdir c-src/etags.c 206 |
| 3111 | infabsname c-src/etags.c 205 | 3159 | infabsname c-src/etags.c 205 |
| 3160 | infiles make-src/Makefile /^infiles = $(filter-out ${NONSRCS},${SRCS}) srclist/ | ||
| 3112 | infname c-src/etags.c 204 | 3161 | infname c-src/etags.c 204 |
| 3113 | info c-src/emacs/src/gmalloc.c 157 | 3162 | info c-src/emacs/src/gmalloc.c 157 |
| 3114 | infoPanel objcpp-src/SimpleCalc.M /^- infoPanel:sender$/ | 3163 | infoPanel objcpp-src/SimpleCalc.M /^- infoPanel:sender$/ |
| @@ -3385,6 +3434,7 @@ main::section_url_base perl-src/htlmify-cystic /^sub section_url_base ()$/ | |||
| 3385 | main::section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/ | 3434 | main::section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/ |
| 3386 | main::toc_line perl-src/htlmify-cystic /^sub toc_line ($)$/ | 3435 | main::toc_line perl-src/htlmify-cystic /^sub toc_line ($)$/ |
| 3387 | main::usage perl-src/yagrip.pl /^sub usage {$/ | 3436 | main::usage perl-src/yagrip.pl /^sub usage {$/ |
| 3437 | maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/ | ||
| 3388 | make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ | 3438 | make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ |
| 3389 | make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/ | 3439 | make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/ |
| 3390 | make_coor prol-src/natded.prolog /^make_coor(s(_),Alpha,Sem1,Sem2,Alpha@Sem1@Sem2).$/ | 3440 | make_coor prol-src/natded.prolog /^make_coor(s(_),Alpha,Sem1,Sem2,Alpha@Sem1@Sem2).$/ |
| @@ -3417,6 +3467,7 @@ malloc_enable_thread c-src/emacs/src/gmalloc.c /^malloc_enable_thread (void)$/ | |||
| 3417 | malloc_info c-src/emacs/src/gmalloc.c 167 | 3467 | malloc_info c-src/emacs/src/gmalloc.c 167 |
| 3418 | malloc_initialize_1 c-src/emacs/src/gmalloc.c /^malloc_initialize_1 (void)$/ | 3468 | malloc_initialize_1 c-src/emacs/src/gmalloc.c /^malloc_initialize_1 (void)$/ |
| 3419 | mallochook c-src/emacs/src/gmalloc.c /^mallochook (size_t size)$/ | 3469 | mallochook c-src/emacs/src/gmalloc.c /^mallochook (size_t size)$/ |
| 3470 | man manpage make-src/Makefile /^man manpage: etags.1.man$/ | ||
| 3420 | mao c-src/h.h 101 | 3471 | mao c-src/h.h 101 |
| 3421 | map c-src/emacs/src/keyboard.c 8748 | 3472 | map c-src/emacs/src/keyboard.c 8748 |
| 3422 | map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/ | 3473 | map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/ |
| @@ -3464,6 +3515,7 @@ modifier_symbols c-src/emacs/src/keyboard.c 6327 | |||
| 3464 | modify_event_symbol c-src/emacs/src/keyboard.c /^modify_event_symbol (ptrdiff_t symbol_num, int mod/ | 3515 | modify_event_symbol c-src/emacs/src/keyboard.c /^modify_event_symbol (ptrdiff_t symbol_num, int mod/ |
| 3465 | module_class_method ruby-src/test.rb /^ def ModuleExample.module_class_method$/ | 3516 | module_class_method ruby-src/test.rb /^ def ModuleExample.module_class_method$/ |
| 3466 | module_instance_method ruby-src/test.rb /^ def module_instance_method$/ | 3517 | module_instance_method ruby-src/test.rb /^ def module_instance_method$/ |
| 3518 | more= ruby-src/test1.ru /^ :more$/ | ||
| 3467 | more_aligned_int c.c 165 | 3519 | more_aligned_int c.c 165 |
| 3468 | morecore_nolock c-src/emacs/src/gmalloc.c /^morecore_nolock (size_t size)$/ | 3520 | morecore_nolock c-src/emacs/src/gmalloc.c /^morecore_nolock (size_t size)$/ |
| 3469 | morecore_recursing c-src/emacs/src/gmalloc.c 604 | 3521 | morecore_recursing c-src/emacs/src/gmalloc.c 604 |
| @@ -3619,6 +3671,7 @@ obstack_chunk_free parse.y 47 | |||
| 3619 | ocatseen c-src/etags.c 2477 | 3671 | ocatseen c-src/etags.c 2477 |
| 3620 | octave_MDiagArray2_h cp-src/MDiagArray2.h 29 | 3672 | octave_MDiagArray2_h cp-src/MDiagArray2.h 29 |
| 3621 | octave_Range_h cp-src/Range.h 24 | 3673 | octave_Range_h cp-src/Range.h 24 |
| 3674 | oediff make-src/Makefile /^oediff: OTAGS ETAGS ${infiles}$/ | ||
| 3622 | offset c-src/etags.c 2494 | 3675 | offset c-src/etags.c 2494 |
| 3623 | offset c-src/emacs/src/lisp.h 2305 | 3676 | offset c-src/emacs/src/lisp.h 2305 |
| 3624 | offset c-src/emacs/src/lisp.h 2365 | 3677 | offset c-src/emacs/src/lisp.h 2365 |
| @@ -3810,6 +3863,7 @@ process_file_name c-src/etags.c /^process_file_name (char *file, language *lang) | |||
| 3810 | process_pending_signals c-src/emacs/src/keyboard.c /^process_pending_signals (void)$/ | 3863 | process_pending_signals c-src/emacs/src/keyboard.c /^process_pending_signals (void)$/ |
| 3811 | process_special_events c-src/emacs/src/keyboard.c /^process_special_events (void)$/ | 3864 | process_special_events c-src/emacs/src/keyboard.c /^process_special_events (void)$/ |
| 3812 | process_tool_bar_item c-src/emacs/src/keyboard.c /^process_tool_bar_item (Lisp_Object key, Lisp_Objec/ | 3865 | process_tool_bar_item c-src/emacs/src/keyboard.c /^process_tool_bar_item (Lisp_Object key, Lisp_Objec/ |
| 3866 | prof make-src/Makefile /^prof: ETAGS$/ | ||
| 3813 | prolog_atom c-src/etags.c /^prolog_atom (char *s, size_t pos)$/ | 3867 | prolog_atom c-src/etags.c /^prolog_atom (char *s, size_t pos)$/ |
| 3814 | prolog_pr c-src/etags.c /^prolog_pr (char *s, char *last)$/ | 3868 | prolog_pr c-src/etags.c /^prolog_pr (char *s, char *last)$/ |
| 3815 | prolog_skip_comment c-src/etags.c /^prolog_skip_comment (linebuffer *plb, FILE *inf)$/ | 3869 | prolog_skip_comment c-src/etags.c /^prolog_skip_comment (linebuffer *plb, FILE *inf)$/ |
| @@ -3824,9 +3878,11 @@ put_entries c-src/etags.c /^put_entries (register node *np)$/ | |||
| 3824 | pvec_type c-src/emacs/src/lisp.h 780 | 3878 | pvec_type c-src/emacs/src/lisp.h 780 |
| 3825 | quantizing html-src/algrthms.html /^Quantizing the Received$/ | 3879 | quantizing html-src/algrthms.html /^Quantizing the Received$/ |
| 3826 | questo ../c/c.web 34 | 3880 | questo ../c/c.web 34 |
| 3881 | quiettest make-src/Makefile /^quiettest:$/ | ||
| 3827 | quit_char c-src/emacs/src/keyboard.c 192 | 3882 | quit_char c-src/emacs/src/keyboard.c 192 |
| 3828 | quit_throw_to_read_char c-src/emacs/src/keyboard.c /^quit_throw_to_read_char (bool from_signal)$/ | 3883 | quit_throw_to_read_char c-src/emacs/src/keyboard.c /^quit_throw_to_read_char (bool from_signal)$/ |
| 3829 | qux= ruby-src/test1.ruby /^ def qux=(tee)$/ | 3884 | qux ruby-src/test1.ru /^ alias_method :qux, :tee, attr_accessor :bogu/ |
| 3885 | qux= ruby-src/test1.ru /^ def qux=(tee)$/ | ||
| 3830 | r0 c-src/sysdep.h 54 | 3886 | r0 c-src/sysdep.h 54 |
| 3831 | r1 c-src/sysdep.h 55 | 3887 | r1 c-src/sysdep.h 55 |
| 3832 | r_alloc c-src/emacs/src/lisp.h /^extern void *r_alloc (void **, size_t) ATTRIBUTE_A/ | 3888 | r_alloc c-src/emacs/src/lisp.h /^extern void *r_alloc (void **, size_t) ATTRIBUTE_A/ |
| @@ -3850,6 +3906,8 @@ read cp-src/conway.hpp /^ char read() { return alive; }$/ | |||
| 3850 | read php-src/lce_functions.php /^ function read()$/ | 3906 | read php-src/lce_functions.php /^ function read()$/ |
| 3851 | read-key-sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | 3907 | read-key-sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ |
| 3852 | read-key-sequence-vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | 3908 | read-key-sequence-vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ |
| 3909 | read1 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :wr/ | ||
| 3910 | read2 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :wr/ | ||
| 3853 | read_char c-src/emacs/src/keyboard.c /^read_char (int commandflag, Lisp_Object map,$/ | 3911 | read_char c-src/emacs/src/keyboard.c /^read_char (int commandflag, Lisp_Object map,$/ |
| 3854 | read_char_help_form_unwind c-src/emacs/src/keyboard.c /^read_char_help_form_unwind (void)$/ | 3912 | read_char_help_form_unwind c-src/emacs/src/keyboard.c /^read_char_help_form_unwind (void)$/ |
| 3855 | read_char_minibuf_menu_prompt c-src/emacs/src/keyboard.c /^read_char_minibuf_menu_prompt (int commandflag,$/ | 3913 | read_char_minibuf_menu_prompt c-src/emacs/src/keyboard.c /^read_char_minibuf_menu_prompt (int commandflag,$/ |
| @@ -3890,13 +3948,10 @@ reg_errcode_t c.c 279 | |||
| 3890 | reg_errcode_t c-src/emacs/src/regex.h 323 | 3948 | reg_errcode_t c-src/emacs/src/regex.h 323 |
| 3891 | reg_syntax_t c-src/emacs/src/regex.h 43 | 3949 | reg_syntax_t c-src/emacs/src/regex.h 43 |
| 3892 | regex c-src/etags.c 219 | 3950 | regex c-src/etags.c 219 |
| 3893 | regex make-src/Makefile 204 | 3951 | regex.o make-src/Makefile /^regex.o: emacs\/src\/regex.c$/ |
| 3894 | regex make-src/Makefile 207 | ||
| 3895 | regex make-src/Makefile 213 | ||
| 3896 | regex make-src/Makefile 216 | ||
| 3897 | regex make-src/Makefile 219 | ||
| 3898 | regex_t c-src/emacs/src/regex.h 416 | 3952 | regex_t c-src/emacs/src/regex.h 416 |
| 3899 | regex_tag_multiline c-src/etags.c /^regex_tag_multiline (void)$/ | 3953 | regex_tag_multiline c-src/etags.c /^regex_tag_multiline (void)$/ |
| 3954 | regexfile make-src/Makefile /^regexfile: Makefile$/ | ||
| 3900 | regexp c-src/etags.c 256 | 3955 | regexp c-src/etags.c 256 |
| 3901 | regexp c-src/etags.c 268 | 3956 | regexp c-src/etags.c 268 |
| 3902 | registerAction objcpp-src/SimpleCalc.M /^- registerAction:(SEL)action$/ | 3957 | registerAction objcpp-src/SimpleCalc.M /^- registerAction:(SEL)action$/ |
| @@ -3911,6 +3966,7 @@ regular_top_level_message c-src/emacs/src/keyboard.c 143 | |||
| 3911 | rehash_size c-src/emacs/src/lisp.h 1835 | 3966 | rehash_size c-src/emacs/src/lisp.h 1835 |
| 3912 | rehash_threshold c-src/emacs/src/lisp.h 1839 | 3967 | rehash_threshold c-src/emacs/src/lisp.h 1839 |
| 3913 | relative_filename c-src/etags.c /^relative_filename (char *file, char *dir)$/ | 3968 | relative_filename c-src/etags.c /^relative_filename (char *file, char *dir)$/ |
| 3969 | release distrib make-src/Makefile /^release distrib: web$/ | ||
| 3914 | removeexp prol-src/natded.prolog /^removeexp(E,E,'NIL'):-!.$/ | 3970 | removeexp prol-src/natded.prolog /^removeexp(E,E,'NIL'):-!.$/ |
| 3915 | reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/ | 3971 | reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/ |
| 3916 | request c.c /^request request (a, b)$/ | 3972 | request c.c /^request request (a, b)$/ |
| @@ -3934,6 +3990,8 @@ rng_inc cp-src/Range.h 81 | |||
| 3934 | rng_limit cp-src/Range.h 80 | 3990 | rng_limit cp-src/Range.h 80 |
| 3935 | rng_nelem cp-src/Range.h 83 | 3991 | rng_nelem cp-src/Range.h 83 |
| 3936 | rosso cp-src/c.C 40 | 3992 | rosso cp-src/c.C 40 |
| 3993 | rsyncfromfly make-src/Makefile /^rsyncfromfly:$/ | ||
| 3994 | rsynctofly make-src/Makefile /^rsynctofly:$/ | ||
| 3937 | rtint c-src/h.h 60 | 3995 | rtint c-src/h.h 60 |
| 3938 | rtint c-src/h.h 68 | 3996 | rtint c-src/h.h 68 |
| 3939 | rtstr c-src/h.h 61 | 3997 | rtstr c-src/h.h 61 |
| @@ -4049,6 +4107,7 @@ specbind_tag c-src/emacs/src/lisp.h 2943 | |||
| 4049 | specbinding c-src/emacs/src/lisp.h 2955 | 4107 | specbinding c-src/emacs/src/lisp.h 2955 |
| 4050 | specialsymbol prol-src/natded.prolog /^specialsymbol(C1,C2,S):-$/ | 4108 | specialsymbol prol-src/natded.prolog /^specialsymbol(C1,C2,S):-$/ |
| 4051 | splitexp prol-src/natded.prolog /^splitexp(E,E,('NIL','NIL')):-!.$/ | 4109 | splitexp prol-src/natded.prolog /^splitexp(E,E,('NIL','NIL')):-!.$/ |
| 4110 | srclist make-src/Makefile /^srclist: Makefile$/ | ||
| 4052 | ss3 c.c 255 | 4111 | ss3 c.c 255 |
| 4053 | sss1 c.c 252 | 4112 | sss1 c.c 252 |
| 4054 | sss2 c.c 253 | 4113 | sss2 c.c 253 |
| @@ -4071,6 +4130,7 @@ st_C_typedef c-src/etags.c 2213 | |||
| 4071 | st_none c-src/etags.c 2206 | 4130 | st_none c-src/etags.c 2206 |
| 4072 | stack c.c 155 | 4131 | stack c.c 155 |
| 4073 | stagseen c-src/etags.c 2446 | 4132 | stagseen c-src/etags.c 2446 |
| 4133 | standalone make-src/Makefile /^standalone:$/ | ||
| 4074 | start c-src/emacs/src/regex.h 431 | 4134 | start c-src/emacs/src/regex.h 431 |
| 4075 | start c-src/emacs/src/keyboard.c 8753 | 4135 | start c-src/emacs/src/keyboard.c 8753 |
| 4076 | start php-src/lce_functions.php /^ function start($line, $class)$/ | 4136 | start php-src/lce_functions.php /^ function start($line, $class)$/ |
| @@ -4079,6 +4139,7 @@ start_polling c-src/emacs/src/keyboard.c /^start_polling (void)$/ | |||
| 4079 | start_up prol-src/natded.prolog /^start_up:-$/ | 4139 | start_up prol-src/natded.prolog /^start_up:-$/ |
| 4080 | state_protected_p c-src/emacs/src/gmalloc.c 400 | 4140 | state_protected_p c-src/emacs/src/gmalloc.c 400 |
| 4081 | statetable html-src/algrthms.html /^Next$/ | 4141 | statetable html-src/algrthms.html /^Next$/ |
| 4142 | staticetags make-src/Makefile /^staticetags:$/ | ||
| 4082 | step cp-src/conway.hpp /^ void step(void) { alive = next_alive; }$/ | 4143 | step cp-src/conway.hpp /^ void step(void) { alive = next_alive; }$/ |
| 4083 | step cp-src/clheir.hpp /^ virtual void step(void) { }$/ | 4144 | step cp-src/clheir.hpp /^ virtual void step(void) { }$/ |
| 4084 | step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/ | 4145 | step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/ |
| @@ -4105,6 +4166,7 @@ substitute c-src/etags.c /^substitute (char *in, char *out, struct re_registe/ | |||
| 4105 | subsubsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsec=\\relax$/ | 4166 | subsubsec=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsec=\\relax$/ |
| 4106 | subsubsection perl-src/htlmify-cystic 27 | 4167 | subsubsection perl-src/htlmify-cystic 27 |
| 4107 | subsubsection=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsection=\\relax$/ | 4168 | subsubsection=\relax tex-src/texinfo.tex /^\\let\\appendixsubsubsection=\\relax$/ |
| 4169 | subtle ruby-src/test1.ru /^ :tee ; attr_reader :subtle$/ | ||
| 4108 | subtree prol-src/natded.prolog /^subtree(T,T).$/ | 4170 | subtree prol-src/natded.prolog /^subtree(T,T).$/ |
| 4109 | suffix c-src/etags.c 186 | 4171 | suffix c-src/etags.c 186 |
| 4110 | suffixes c-src/etags.c 195 | 4172 | suffixes c-src/etags.c 195 |
| @@ -4168,6 +4230,7 @@ tag6 c-src/torture.c /^tag6 (void (*handler) (void *), void *arg)$/ | |||
| 4168 | tag6 c-src/dostorture.c /^tag6 (void (*handler) (void *), void *arg)$/ | 4230 | tag6 c-src/dostorture.c /^tag6 (void (*handler) (void *), void *arg)$/ |
| 4169 | tag_or_ch c-src/emacs/src/lisp.h 3026 | 4231 | tag_or_ch c-src/emacs/src/lisp.h 3026 |
| 4170 | taggedfname c-src/etags.c 207 | 4232 | taggedfname c-src/etags.c 207 |
| 4233 | tags make-src/Makefile /^tags: TAGS$/ | ||
| 4171 | tags-add-tables el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-add-tables 'ask-user$/ | 4234 | tags-add-tables el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-add-tables 'ask-user$/ |
| 4172 | tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun tags-apropos (regexp)$/ | 4235 | tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun tags-apropos (regexp)$/ |
| 4173 | tags-apropos-additional-actions el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-additional-actions nil$/ | 4236 | tags-apropos-additional-actions el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-additional-actions nil$/ |
| @@ -4220,6 +4283,8 @@ tags-with-face el-src/emacs/lisp/progmodes/etags.el /^(defmacro tags-with-face ( | |||
| 4220 | target_multibyte c-src/emacs/src/regex.h 407 | 4283 | target_multibyte c-src/emacs/src/regex.h 407 |
| 4221 | tcpdump html-src/software.html /^tcpdump$/ | 4284 | tcpdump html-src/software.html /^tcpdump$/ |
| 4222 | teats cp-src/c.C 127 | 4285 | teats cp-src/c.C 127 |
| 4286 | tee ruby-src/test1.ru /^ attr_accessor :tee$/ | ||
| 4287 | tee= ruby-src/test1.ru /^ attr_accessor :tee$/ | ||
| 4223 | temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame / | 4288 | temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame / |
| 4224 | tend c-src/etags.c 2432 | 4289 | tend c-src/etags.c 2432 |
| 4225 | terminate objc-src/Subprocess.m /^- terminate:sender$/ | 4290 | terminate objc-src/Subprocess.m /^- terminate:sender$/ |
| @@ -4228,6 +4293,7 @@ test c-src/emacs/src/lisp.h 1871 | |||
| 4228 | test cp-src/c.C 86 | 4293 | test cp-src/c.C 86 |
| 4229 | test erl-src/gs_dialog.erl /^test() ->$/ | 4294 | test erl-src/gs_dialog.erl /^test() ->$/ |
| 4230 | test go-src/test1.go /^func test(p plus) {$/ | 4295 | test go-src/test1.go /^func test(p plus) {$/ |
| 4296 | test make-src/Makefile /^test:$/ | ||
| 4231 | test php-src/ptest.php /^test $/ | 4297 | test php-src/ptest.php /^test $/ |
| 4232 | test.me22b lua-src/test.lua /^ local function test.me22b (one)$/ | 4298 | test.me22b lua-src/test.lua /^ local function test.me22b (one)$/ |
| 4233 | test.me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | 4299 | test.me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ |
| @@ -4374,15 +4440,12 @@ warning cccp.y /^warning (msg)$/ | |||
| 4374 | warning y-src/cccp.y /^warning (msg)$/ | 4440 | warning y-src/cccp.y /^warning (msg)$/ |
| 4375 | weak c-src/emacs/src/lisp.h 1830 | 4441 | weak c-src/emacs/src/lisp.h 1830 |
| 4376 | weak_alias c-src/emacs/src/gmalloc.c /^weak_alias (free, cfree)$/ | 4442 | weak_alias c-src/emacs/src/gmalloc.c /^weak_alias (free, cfree)$/ |
| 4443 | web ftp publish make-src/Makefile /^web ftp publish:$/ | ||
| 4377 | what c-src/etags.c 252 | 4444 | what c-src/etags.c 252 |
| 4378 | wheel_syms c-src/emacs/src/keyboard.c 4628 | 4445 | wheel_syms c-src/emacs/src/keyboard.c 4628 |
| 4379 | where c-src/emacs/src/lisp.h 2348 | 4446 | where c-src/emacs/src/lisp.h 2348 |
| 4380 | where cp-src/clheir.hpp 77 | 4447 | where cp-src/clheir.hpp 77 |
| 4381 | where_in_registry cp-src/clheir.hpp 15 | 4448 | where_in_registry cp-src/clheir.hpp 15 |
| 4382 | width make-src/Makefile 186 | ||
| 4383 | width make-src/Makefile 189 | ||
| 4384 | width make-src/Makefile 192 | ||
| 4385 | width make-src/Makefile 195 | ||
| 4386 | windowWillClose objcpp-src/SimpleCalc.M /^- windowWillClose:sender$/ | 4449 | windowWillClose objcpp-src/SimpleCalc.M /^- windowWillClose:sender$/ |
| 4387 | wipe_kboard c-src/emacs/src/keyboard.c /^wipe_kboard (KBOARD *kb)$/ | 4450 | wipe_kboard c-src/emacs/src/keyboard.c /^wipe_kboard (KBOARD *kb)$/ |
| 4388 | womboid c-src/h.h 63 | 4451 | womboid c-src/h.h 63 |
| @@ -4390,6 +4453,8 @@ womboid c-src/h.h 75 | |||
| 4390 | word_size c-src/emacs/src/lisp.h 1473 | 4453 | word_size c-src/emacs/src/lisp.h 1473 |
| 4391 | write php-src/lce_functions.php /^ function write()$/ | 4454 | write php-src/lce_functions.php /^ function write()$/ |
| 4392 | write php-src/lce_functions.php /^ function write($save="yes")$/ | 4455 | write php-src/lce_functions.php /^ function write($save="yes")$/ |
| 4456 | write1= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :wr/ | ||
| 4457 | write2= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :wr/ | ||
| 4393 | write_abbrev c-src/abbrev.c /^write_abbrev (sym, stream)$/ | 4458 | write_abbrev c-src/abbrev.c /^write_abbrev (sym, stream)$/ |
| 4394 | write_classname c-src/etags.c /^write_classname (linebuffer *cn, const char *quali/ | 4459 | write_classname c-src/etags.c /^write_classname (linebuffer *cn, const char *quali/ |
| 4395 | write_lex prol-src/natded.prolog /^write_lex(File):-$/ | 4460 | write_lex prol-src/natded.prolog /^write_lex(File):-$/ |
| @@ -4420,6 +4485,7 @@ x-get-selection-internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selecti | |||
| 4420 | x-get-selection-internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | 4485 | x-get-selection-internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ |
| 4421 | xcar_addr c-src/emacs/src/lisp.h /^xcar_addr (Lisp_Object c)$/ | 4486 | xcar_addr c-src/emacs/src/lisp.h /^xcar_addr (Lisp_Object c)$/ |
| 4422 | xcdr_addr c-src/emacs/src/lisp.h /^xcdr_addr (Lisp_Object c)$/ | 4487 | xcdr_addr c-src/emacs/src/lisp.h /^xcdr_addr (Lisp_Object c)$/ |
| 4488 | xdiff make-src/Makefile /^xdiff: ETAGS EXTAGS ${infiles}$/ | ||
| 4423 | xmalloc c-src/etags.c /^xmalloc (size_t size)$/ | 4489 | xmalloc c-src/etags.c /^xmalloc (size_t size)$/ |
| 4424 | xnew c-src/etags.c /^#define xnew(n, Type) ((Type *) xmalloc ((n) / | 4490 | xnew c-src/etags.c /^#define xnew(n, Type) ((Type *) xmalloc ((n) / |
| 4425 | xrealloc c-src/etags.c /^xrealloc (void *ptr, size_t size)$/ | 4491 | xrealloc c-src/etags.c /^xrealloc (void *ptr, size_t size)$/ |
| @@ -4428,6 +4494,8 @@ xref-location-line el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-loc | |||
| 4428 | xref-location-marker el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-marker ((l xref-etags-/ | 4494 | xref-location-marker el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-marker ((l xref-etags-/ |
| 4429 | xref-make-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defun xref-make-etags-location (tag-info file)$/ | 4495 | xref-make-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defun xref-make-etags-location (tag-info file)$/ |
| 4430 | xrnew c-src/etags.c /^#define xrnew(op, n, Type) ((op) = (Type *) xreall/ | 4496 | xrnew c-src/etags.c /^#define xrnew(op, n, Type) ((op) = (Type *) xreall/ |
| 4497 | xx make-src/Makefile /^xx="this line is here because of a fontlock bug$/ | ||
| 4498 | xyz ruby-src/test1.ru /^ alias_method :xyz,$/ | ||
| 4431 | y cp-src/conway.hpp 7 | 4499 | y cp-src/conway.hpp 7 |
| 4432 | y cp-src/clheir.hpp 49 | 4500 | y cp-src/clheir.hpp 49 |
| 4433 | y cp-src/clheir.hpp 58 | 4501 | y cp-src/clheir.hpp 58 |
diff --git a/test/manual/etags/ETAGS.good_1 b/test/manual/etags/ETAGS.good_1 index c7b122111c4..1390187863f 100644 --- a/test/manual/etags/ETAGS.good_1 +++ b/test/manual/etags/ETAGS.good_1 | |||
| @@ -2362,49 +2362,101 @@ function Square.something:Bar Bar14,148 | |||
| 2362 | local function test.me22b 25,297 | 2362 | local function test.me22b 25,297 |
| 2363 | local function test.me22b me22b25,297 | 2363 | local function test.me22b me22b25,297 |
| 2364 | 2364 | ||
| 2365 | make-src/Makefile,1133 | 2365 | make-src/Makefile,2175 |
| 2366 | LATEST=1,0 | 2366 | LATEST=1,0 |
| 2367 | RELEASELIST=2,10 | ||
| 2368 | ADASRC=4,104 | ||
| 2369 | ASRC=5,171 | ||
| 2370 | CSRC=6,197 | ||
| 2371 | CPSRC=10,423 | ||
| 2372 | ELSRC=13,614 | ||
| 2373 | ERLSRC=14,661 | ||
| 2374 | FORTHSRC=15,702 | ||
| 2375 | FSRC=16,726 | ||
| 2376 | HTMLSRC=17,776 | ||
| 2377 | JAVASRC=18,844 | ||
| 2378 | LUASRC=19,907 | ||
| 2379 | MAKESRC=20,926 | ||
| 2380 | OBJCSRC=21,943 | ||
| 2381 | OBJCPPSRC=22,999 | ||
| 2382 | PASSRC=23,1035 | ||
| 2383 | PERLSRC=24,1053 | ||
| 2384 | PHPSRC=25,1108 | ||
| 2385 | PSSRC=26,1156 | ||
| 2386 | PROLSRC=27,1173 | ||
| 2387 | PYTSRC=28,1210 | ||
| 2388 | TEXSRC=29,1227 | ||
| 2389 | YSRC=30,1282 | ||
| 2390 | SRCS=31,1325 | ||
| 2367 | NONSRCS=35,1577 | 2391 | NONSRCS=35,1577 |
| 2392 | VHDLFLAGS=37,1624 | ||
| 2393 | COBOLFLAGS=38,1827 | ||
| 2394 | POSTSCRIPTFLAGS=39,1889 | ||
| 2395 | TCLFLAGS=40,1943 | ||
| 2396 | GETOPTOBJS=42,2002 | ||
| 2397 | RXINCLUDE=43,2034 | ||
| 2398 | REGEXOBJS=44,2056 | ||
| 2399 | CHECKOBJS=46,2075 | ||
| 2400 | CHECKFLAGS=47,2105 | ||
| 2401 | OBJS=48,2145 | ||
| 2368 | CPPFLAGS=49,2190 | 2402 | CPPFLAGS=49,2190 |
| 2369 | LDFLAGS=50,2259 | 2403 | LDFLAGS=50,2259 |
| 2404 | WARNINGS=51,2282 | ||
| 2405 | CFLAGS=52,2466 | ||
| 2370 | FASTCFLAGS=55,2530 | 2406 | FASTCFLAGS=55,2530 |
| 2407 | FASTCFLAGSWARN=56,2591 | ||
| 2371 | FILTER=58,2641 | 2408 | FILTER=58,2641 |
| 2372 | @-$($72,3063 | 2409 | REGEX=59,2695 |
| 2373 | @-$($73,3112 | 2410 | xx=60,2741 |
| 2374 | @-$($74,3176 | 2411 | MAKE:MAKE62,2790 |
| 2375 | @-$($75,3222 | 2412 | RUN=63,2825 |
| 2376 | @-$($76,3290 | 2413 | RUN=64,2865 |
| 2377 | @-$($77,3382 | 2414 | OPTIONS=65,2870 |
| 2378 | @$(81,3465 | 2415 | ARGS=66,2922 |
| 2379 | @$(82,3513 | 2416 | infiles 68,2940 |
| 2380 | @$(83,3576 | 2417 | quiettest:quiettest70,3002 |
| 2381 | @$(84,3621 | 2418 | test:test79,3409 |
| 2382 | @$(85,3688 | 2419 | ${CHECKOBJS}:${CHECKOBJS}88,3805 |
| 2383 | @$(86,3779 | 2420 | checker:checker90,3849 |
| 2384 | ${CHECKOBJS}: CFLAGS=88,3805 | 2421 | standalone:standalone96,4062 |
| 2385 | @env CHECKEROPTS=92,3921 | 2422 | prof:prof101,4168 |
| 2386 | @$(98,4093 | 2423 | fastetags:fastetags104,4198 |
| 2387 | @$(106,4249 | 2424 | fastctags:fastctags108,4322 |
| 2388 | @$(110,4373 | 2425 | staticetags:staticetags112,4446 |
| 2389 | @$(114,4499 | 2426 | rsynctofly:rsynctofly116,4608 |
| 2390 | @for i in $(SRCS); do echo $$i;140,5320 | 2427 | rsyncfromfly:rsyncfromfly119,4698 |
| 2391 | $(160,6058 | 2428 | web ftp publish:web ftp publish122,4794 |
| 2392 | $(163,6119 | 2429 | release distrib:release distrib129,5115 |
| 2393 | $(166,6182 | 2430 | tags:tags134,5255 |
| 2394 | $(169,6233 | 2431 | clean:clean136,5267 |
| 2395 | $(172,6322 | 2432 | srclist:srclist139,5302 |
| 2396 | sdiff --suppress-common-lines --width=width186,6619 | 2433 | regexfile:regexfile143,5391 |
| 2397 | sdiff --suppress-common-lines --width=width189,6708 | 2434 | /home/www/pub/etags.c.gz:/home/www/pub/etags.c.gz149,5566 |
| 2398 | sdiff --suppress-common-lines --width=width192,6796 | 2435 | /home/www/pub/software/unix/etags.tar.gz:/home/www/pub/software/unix/etags.tar.gz156,5825 |
| 2399 | sdiff --suppress-common-lines --width=width195,6885 | 2436 | regex.o:regex.o159,6031 |
| 2400 | TEXTAGS=204,7127 | 2437 | getopt.o:getopt.o162,6086 |
| 2401 | TEXTAGS=def:newcommand:newenvironment ${RUN} etags$* --regex=regex204,7127 | 2438 | getopt1.o:getopt1.o165,6147 |
| 2402 | ${RUN} etags12 --members -o $@ --regex=regex207,7244 | 2439 | etags:etags168,6210 |
| 2403 | ${RUN} ./ctags -o $@ --regex=regex213,7393 | 2440 | ctags:ctags171,6299 |
| 2404 | ${RUN} ctags$* -wtTd --globals --members -o $@ --regex=regex216,7469 | 2441 | man manpage:man manpage174,6396 |
| 2405 | TEXTAGS=219,7588 | 2442 | etags.1.man:etags.1.man176,6422 |
| 2406 | TEXTAGS=def:newcommand:newenvironment ${RUN} ctags$* -wt -o $@ --regex=regex219,7588 | 2443 | maintaining.info:maintaining.info179,6475 |
| 2407 | ${RUN} ./extags -e --regex-c=c222,7715 | 2444 | TAGS:TAGS182,6557 |
| 2445 | %ediff:%ediff185,6587 | ||
| 2446 | oediff:oediff188,6677 | ||
| 2447 | %cdiff:%cdiff191,6764 | ||
| 2448 | xdiff:xdiff194,6854 | ||
| 2449 | ETAGS:ETAGS197,6942 | ||
| 2450 | ETAGS%:ETAGS%200,7012 | ||
| 2451 | ETAGS13 ETAGS14 ETAGS15:ETAGS13 ETAGS14 ETAGS15203,7084 | ||
| 2452 | ETAGS12:ETAGS12206,7216 | ||
| 2453 | OTAGS:OTAGS209,7304 | ||
| 2454 | CTAGS:CTAGS212,7369 | ||
| 2455 | CTAGS%:CTAGS%215,7443 | ||
| 2456 | CTAGS13 CTAGS14 CTAGS15:CTAGS13 CTAGS14 CTAGS15218,7545 | ||
| 2457 | EXTAGS:EXTAGS221,7680 | ||
| 2458 | .PRECIOUS:.PRECIOUS224,7838 | ||
| 2459 | FRC:FRC226,7894 | ||
| 2408 | 2460 | ||
| 2409 | objc-src/Subprocess.h,98 | 2461 | objc-src/Subprocess.h,98 |
| 2410 | #define Subprocess 41,1217 | 2462 | #define Subprocess 41,1217 |
| @@ -3009,17 +3061,33 @@ module ModuleExample1,0 | |||
| 3009 | def module_instance_method46,1051 | 3061 | def module_instance_method46,1051 |
| 3010 | def ModuleExample.module_class_methodmodule_class_method49,1131 | 3062 | def ModuleExample.module_class_methodmodule_class_method49,1131 |
| 3011 | 3063 | ||
| 3012 | ruby-src/test1.ruby,191 | 3064 | ruby-src/test1.ru,828 |
| 3013 | class A1,0 | 3065 | class A1,0 |
| 3014 | def a(2,8 | 3066 | def a(2,8 |
| 3015 | def b(5,38 | 3067 | def b(5,38 |
| 3016 | module A9,57 | 3068 | module A9,57 |
| 3017 | class B10,66 | 3069 | class B10,66 |
| 3018 | ABC 11,76 | 3070 | ABC 11,76 |
| 3019 | def foo!13,89 | 3071 | Def_ 12,88 |
| 3020 | def self._bar?(_bar?16,111 | 3072 | Xyzzy 13,106 |
| 3021 | def qux=(qux=20,162 | 3073 | def foo!15,121 |
| 3022 | A::Constant Constant26,211 | 3074 | def self._bar?(_bar?18,143 |
| 3075 | def qux=(qux=22,194 | ||
| 3076 | def X25,232 | ||
| 3077 | attr_reader :foofoo26,242 | ||
| 3078 | attr_reader :read1 read127,265 | ||
| 3079 | attr_reader :read1 , :read2;read227,265 | ||
| 3080 | attr_reader :read1 , :read2; attr_writer :write1,write1=27,265 | ||
| 3081 | attr_reader :read1 , :read2; attr_writer :write1, :write2write2=27,265 | ||
| 3082 | attr_writer :bar,bar=28,329 | ||
| 3083 | :baz,baz=29,353 | ||
| 3084 | :moremore=30,377 | ||
| 3085 | attr_accessor :teetee31,401 | ||
| 3086 | attr_accessor :teetee=31,401 | ||
| 3087 | alias_method :qux,qux32,426 | ||
| 3088 | alias_method :xyz,xyz33,478 | ||
| 3089 | :tee ; attr_reader :subtlesubtle34,503 | ||
| 3090 | A::Constant Constant39,568 | ||
| 3023 | 3091 | ||
| 3024 | tex-src/testenv.tex,52 | 3092 | tex-src/testenv.tex,52 |
| 3025 | \newcommand{\nm}\nm4,77 | 3093 | \newcommand{\nm}\nm4,77 |
diff --git a/test/manual/etags/ETAGS.good_2 b/test/manual/etags/ETAGS.good_2 index 8d0f33824a4..f8b1546ef48 100644 --- a/test/manual/etags/ETAGS.good_2 +++ b/test/manual/etags/ETAGS.good_2 | |||
| @@ -2931,50 +2931,101 @@ function Square.something:Bar Bar14,148 | |||
| 2931 | local function test.me22b 25,297 | 2931 | local function test.me22b 25,297 |
| 2932 | local function test.me22b me22b25,297 | 2932 | local function test.me22b me22b25,297 |
| 2933 | 2933 | ||
| 2934 | make-src/Makefile,1156 | 2934 | make-src/Makefile,2175 |
| 2935 | LATEST=1,0 | 2935 | LATEST=1,0 |
| 2936 | RELEASELIST=2,10 | ||
| 2937 | ADASRC=4,104 | ||
| 2938 | ASRC=5,171 | ||
| 2939 | CSRC=6,197 | ||
| 2940 | CPSRC=10,423 | ||
| 2941 | ELSRC=13,614 | ||
| 2942 | ERLSRC=14,661 | ||
| 2943 | FORTHSRC=15,702 | ||
| 2944 | FSRC=16,726 | ||
| 2945 | HTMLSRC=17,776 | ||
| 2946 | JAVASRC=18,844 | ||
| 2947 | LUASRC=19,907 | ||
| 2948 | MAKESRC=20,926 | ||
| 2949 | OBJCSRC=21,943 | ||
| 2950 | OBJCPPSRC=22,999 | ||
| 2951 | PASSRC=23,1035 | ||
| 2952 | PERLSRC=24,1053 | ||
| 2953 | PHPSRC=25,1108 | ||
| 2954 | PSSRC=26,1156 | ||
| 2955 | PROLSRC=27,1173 | ||
| 2956 | PYTSRC=28,1210 | ||
| 2957 | TEXSRC=29,1227 | ||
| 2958 | YSRC=30,1282 | ||
| 2959 | SRCS=31,1325 | ||
| 2936 | NONSRCS=35,1577 | 2960 | NONSRCS=35,1577 |
| 2961 | VHDLFLAGS=37,1624 | ||
| 2962 | COBOLFLAGS=38,1827 | ||
| 2963 | POSTSCRIPTFLAGS=39,1889 | ||
| 2964 | TCLFLAGS=40,1943 | ||
| 2965 | GETOPTOBJS=42,2002 | ||
| 2966 | RXINCLUDE=43,2034 | ||
| 2967 | REGEXOBJS=44,2056 | ||
| 2968 | CHECKOBJS=46,2075 | ||
| 2969 | CHECKFLAGS=47,2105 | ||
| 2970 | OBJS=48,2145 | ||
| 2937 | CPPFLAGS=49,2190 | 2971 | CPPFLAGS=49,2190 |
| 2938 | LDFLAGS=50,2259 | 2972 | LDFLAGS=50,2259 |
| 2973 | WARNINGS=51,2282 | ||
| 2974 | CFLAGS=52,2466 | ||
| 2939 | FASTCFLAGS=55,2530 | 2975 | FASTCFLAGS=55,2530 |
| 2976 | FASTCFLAGSWARN=56,2591 | ||
| 2940 | FILTER=58,2641 | 2977 | FILTER=58,2641 |
| 2941 | @-$($72,3063 | 2978 | REGEX=59,2695 |
| 2942 | @-$($73,3112 | 2979 | xx=60,2741 |
| 2943 | @-$($74,3176 | 2980 | MAKE:MAKE62,2790 |
| 2944 | @-$($75,3222 | 2981 | RUN=63,2825 |
| 2945 | @-$($76,3290 | 2982 | RUN=64,2865 |
| 2946 | @-$($77,3382 | 2983 | OPTIONS=65,2870 |
| 2947 | @$(81,3465 | 2984 | ARGS=66,2922 |
| 2948 | @$(82,3513 | 2985 | infiles 68,2940 |
| 2949 | @$(83,3576 | 2986 | quiettest:quiettest70,3002 |
| 2950 | @$(84,3621 | 2987 | test:test79,3409 |
| 2951 | @$(85,3688 | 2988 | ${CHECKOBJS}:${CHECKOBJS}88,3805 |
| 2952 | @$(86,3779 | 2989 | checker:checker90,3849 |
| 2953 | ${CHECKOBJS}: CFLAGS=88,3805 | 2990 | standalone:standalone96,4062 |
| 2954 | @env CHECKEROPTS=92,3921 | 2991 | prof:prof101,4168 |
| 2955 | @$(98,4093 | 2992 | fastetags:fastetags104,4198 |
| 2956 | @$(106,4249 | 2993 | fastctags:fastctags108,4322 |
| 2957 | @$(110,4373 | 2994 | staticetags:staticetags112,4446 |
| 2958 | @$(114,4499 | 2995 | rsynctofly:rsynctofly116,4608 |
| 2959 | @for i in $(140,5320 | 2996 | rsyncfromfly:rsyncfromfly119,4698 |
| 2960 | @for i in $(SRCS); do echo $$i;140,5320 | 2997 | web ftp publish:web ftp publish122,4794 |
| 2961 | $(160,6058 | 2998 | release distrib:release distrib129,5115 |
| 2962 | $(163,6119 | 2999 | tags:tags134,5255 |
| 2963 | $(166,6182 | 3000 | clean:clean136,5267 |
| 2964 | $(169,6233 | 3001 | srclist:srclist139,5302 |
| 2965 | $(172,6322 | 3002 | regexfile:regexfile143,5391 |
| 2966 | sdiff --suppress-common-lines --width=width186,6619 | 3003 | /home/www/pub/etags.c.gz:/home/www/pub/etags.c.gz149,5566 |
| 2967 | sdiff --suppress-common-lines --width=width189,6708 | 3004 | /home/www/pub/software/unix/etags.tar.gz:/home/www/pub/software/unix/etags.tar.gz156,5825 |
| 2968 | sdiff --suppress-common-lines --width=width192,6796 | 3005 | regex.o:regex.o159,6031 |
| 2969 | sdiff --suppress-common-lines --width=width195,6885 | 3006 | getopt.o:getopt.o162,6086 |
| 2970 | TEXTAGS=204,7127 | 3007 | getopt1.o:getopt1.o165,6147 |
| 2971 | TEXTAGS=def:newcommand:newenvironment ${RUN} etags$* --regex=regex204,7127 | 3008 | etags:etags168,6210 |
| 2972 | ${RUN} etags12 --members -o $@ --regex=regex207,7244 | 3009 | ctags:ctags171,6299 |
| 2973 | ${RUN} ./ctags -o $@ --regex=regex213,7393 | 3010 | man manpage:man manpage174,6396 |
| 2974 | ${RUN} ctags$* -wtTd --globals --members -o $@ --regex=regex216,7469 | 3011 | etags.1.man:etags.1.man176,6422 |
| 2975 | TEXTAGS=219,7588 | 3012 | maintaining.info:maintaining.info179,6475 |
| 2976 | TEXTAGS=def:newcommand:newenvironment ${RUN} ctags$* -wt -o $@ --regex=regex219,7588 | 3013 | TAGS:TAGS182,6557 |
| 2977 | ${RUN} ./extags -e --regex-c=c222,7715 | 3014 | %ediff:%ediff185,6587 |
| 3015 | oediff:oediff188,6677 | ||
| 3016 | %cdiff:%cdiff191,6764 | ||
| 3017 | xdiff:xdiff194,6854 | ||
| 3018 | ETAGS:ETAGS197,6942 | ||
| 3019 | ETAGS%:ETAGS%200,7012 | ||
| 3020 | ETAGS13 ETAGS14 ETAGS15:ETAGS13 ETAGS14 ETAGS15203,7084 | ||
| 3021 | ETAGS12:ETAGS12206,7216 | ||
| 3022 | OTAGS:OTAGS209,7304 | ||
| 3023 | CTAGS:CTAGS212,7369 | ||
| 3024 | CTAGS%:CTAGS%215,7443 | ||
| 3025 | CTAGS13 CTAGS14 CTAGS15:CTAGS13 CTAGS14 CTAGS15218,7545 | ||
| 3026 | EXTAGS:EXTAGS221,7680 | ||
| 3027 | .PRECIOUS:.PRECIOUS224,7838 | ||
| 3028 | FRC:FRC226,7894 | ||
| 2978 | 3029 | ||
| 2979 | objc-src/Subprocess.h,98 | 3030 | objc-src/Subprocess.h,98 |
| 2980 | #define Subprocess 41,1217 | 3031 | #define Subprocess 41,1217 |
| @@ -3580,17 +3631,33 @@ module ModuleExample1,0 | |||
| 3580 | def module_instance_method46,1051 | 3631 | def module_instance_method46,1051 |
| 3581 | def ModuleExample.module_class_methodmodule_class_method49,1131 | 3632 | def ModuleExample.module_class_methodmodule_class_method49,1131 |
| 3582 | 3633 | ||
| 3583 | ruby-src/test1.ruby,191 | 3634 | ruby-src/test1.ru,828 |
| 3584 | class A1,0 | 3635 | class A1,0 |
| 3585 | def a(2,8 | 3636 | def a(2,8 |
| 3586 | def b(5,38 | 3637 | def b(5,38 |
| 3587 | module A9,57 | 3638 | module A9,57 |
| 3588 | class B10,66 | 3639 | class B10,66 |
| 3589 | ABC 11,76 | 3640 | ABC 11,76 |
| 3590 | def foo!13,89 | 3641 | Def_ 12,88 |
| 3591 | def self._bar?(_bar?16,111 | 3642 | Xyzzy 13,106 |
| 3592 | def qux=(qux=20,162 | 3643 | def foo!15,121 |
| 3593 | A::Constant Constant26,211 | 3644 | def self._bar?(_bar?18,143 |
| 3645 | def qux=(qux=22,194 | ||
| 3646 | def X25,232 | ||
| 3647 | attr_reader :foofoo26,242 | ||
| 3648 | attr_reader :read1 read127,265 | ||
| 3649 | attr_reader :read1 , :read2;read227,265 | ||
| 3650 | attr_reader :read1 , :read2; attr_writer :write1,write1=27,265 | ||
| 3651 | attr_reader :read1 , :read2; attr_writer :write1, :write2write2=27,265 | ||
| 3652 | attr_writer :bar,bar=28,329 | ||
| 3653 | :baz,baz=29,353 | ||
| 3654 | :moremore=30,377 | ||
| 3655 | attr_accessor :teetee31,401 | ||
| 3656 | attr_accessor :teetee=31,401 | ||
| 3657 | alias_method :qux,qux32,426 | ||
| 3658 | alias_method :xyz,xyz33,478 | ||
| 3659 | :tee ; attr_reader :subtlesubtle34,503 | ||
| 3660 | A::Constant Constant39,568 | ||
| 3594 | 3661 | ||
| 3595 | tex-src/testenv.tex,52 | 3662 | tex-src/testenv.tex,52 |
| 3596 | \newcommand{\nm}\nm4,77 | 3663 | \newcommand{\nm}\nm4,77 |
diff --git a/test/manual/etags/ETAGS.good_3 b/test/manual/etags/ETAGS.good_3 index 060389c6232..a1e895af7f6 100644 --- a/test/manual/etags/ETAGS.good_3 +++ b/test/manual/etags/ETAGS.good_3 | |||
| @@ -2682,49 +2682,101 @@ function Square.something:Bar Bar14,148 | |||
| 2682 | local function test.me22b 25,297 | 2682 | local function test.me22b 25,297 |
| 2683 | local function test.me22b me22b25,297 | 2683 | local function test.me22b me22b25,297 |
| 2684 | 2684 | ||
| 2685 | make-src/Makefile,1133 | 2685 | make-src/Makefile,2175 |
| 2686 | LATEST=1,0 | 2686 | LATEST=1,0 |
| 2687 | RELEASELIST=2,10 | ||
| 2688 | ADASRC=4,104 | ||
| 2689 | ASRC=5,171 | ||
| 2690 | CSRC=6,197 | ||
| 2691 | CPSRC=10,423 | ||
| 2692 | ELSRC=13,614 | ||
| 2693 | ERLSRC=14,661 | ||
| 2694 | FORTHSRC=15,702 | ||
| 2695 | FSRC=16,726 | ||
| 2696 | HTMLSRC=17,776 | ||
| 2697 | JAVASRC=18,844 | ||
| 2698 | LUASRC=19,907 | ||
| 2699 | MAKESRC=20,926 | ||
| 2700 | OBJCSRC=21,943 | ||
| 2701 | OBJCPPSRC=22,999 | ||
| 2702 | PASSRC=23,1035 | ||
| 2703 | PERLSRC=24,1053 | ||
| 2704 | PHPSRC=25,1108 | ||
| 2705 | PSSRC=26,1156 | ||
| 2706 | PROLSRC=27,1173 | ||
| 2707 | PYTSRC=28,1210 | ||
| 2708 | TEXSRC=29,1227 | ||
| 2709 | YSRC=30,1282 | ||
| 2710 | SRCS=31,1325 | ||
| 2687 | NONSRCS=35,1577 | 2711 | NONSRCS=35,1577 |
| 2712 | VHDLFLAGS=37,1624 | ||
| 2713 | COBOLFLAGS=38,1827 | ||
| 2714 | POSTSCRIPTFLAGS=39,1889 | ||
| 2715 | TCLFLAGS=40,1943 | ||
| 2716 | GETOPTOBJS=42,2002 | ||
| 2717 | RXINCLUDE=43,2034 | ||
| 2718 | REGEXOBJS=44,2056 | ||
| 2719 | CHECKOBJS=46,2075 | ||
| 2720 | CHECKFLAGS=47,2105 | ||
| 2721 | OBJS=48,2145 | ||
| 2688 | CPPFLAGS=49,2190 | 2722 | CPPFLAGS=49,2190 |
| 2689 | LDFLAGS=50,2259 | 2723 | LDFLAGS=50,2259 |
| 2724 | WARNINGS=51,2282 | ||
| 2725 | CFLAGS=52,2466 | ||
| 2690 | FASTCFLAGS=55,2530 | 2726 | FASTCFLAGS=55,2530 |
| 2727 | FASTCFLAGSWARN=56,2591 | ||
| 2691 | FILTER=58,2641 | 2728 | FILTER=58,2641 |
| 2692 | @-$($72,3063 | 2729 | REGEX=59,2695 |
| 2693 | @-$($73,3112 | 2730 | xx=60,2741 |
| 2694 | @-$($74,3176 | 2731 | MAKE:MAKE62,2790 |
| 2695 | @-$($75,3222 | 2732 | RUN=63,2825 |
| 2696 | @-$($76,3290 | 2733 | RUN=64,2865 |
| 2697 | @-$($77,3382 | 2734 | OPTIONS=65,2870 |
| 2698 | @$(81,3465 | 2735 | ARGS=66,2922 |
| 2699 | @$(82,3513 | 2736 | infiles 68,2940 |
| 2700 | @$(83,3576 | 2737 | quiettest:quiettest70,3002 |
| 2701 | @$(84,3621 | 2738 | test:test79,3409 |
| 2702 | @$(85,3688 | 2739 | ${CHECKOBJS}:${CHECKOBJS}88,3805 |
| 2703 | @$(86,3779 | 2740 | checker:checker90,3849 |
| 2704 | ${CHECKOBJS}: CFLAGS=88,3805 | 2741 | standalone:standalone96,4062 |
| 2705 | @env CHECKEROPTS=92,3921 | 2742 | prof:prof101,4168 |
| 2706 | @$(98,4093 | 2743 | fastetags:fastetags104,4198 |
| 2707 | @$(106,4249 | 2744 | fastctags:fastctags108,4322 |
| 2708 | @$(110,4373 | 2745 | staticetags:staticetags112,4446 |
| 2709 | @$(114,4499 | 2746 | rsynctofly:rsynctofly116,4608 |
| 2710 | @for i in $(SRCS); do echo $$i;140,5320 | 2747 | rsyncfromfly:rsyncfromfly119,4698 |
| 2711 | $(160,6058 | 2748 | web ftp publish:web ftp publish122,4794 |
| 2712 | $(163,6119 | 2749 | release distrib:release distrib129,5115 |
| 2713 | $(166,6182 | 2750 | tags:tags134,5255 |
| 2714 | $(169,6233 | 2751 | clean:clean136,5267 |
| 2715 | $(172,6322 | 2752 | srclist:srclist139,5302 |
| 2716 | sdiff --suppress-common-lines --width=width186,6619 | 2753 | regexfile:regexfile143,5391 |
| 2717 | sdiff --suppress-common-lines --width=width189,6708 | 2754 | /home/www/pub/etags.c.gz:/home/www/pub/etags.c.gz149,5566 |
| 2718 | sdiff --suppress-common-lines --width=width192,6796 | 2755 | /home/www/pub/software/unix/etags.tar.gz:/home/www/pub/software/unix/etags.tar.gz156,5825 |
| 2719 | sdiff --suppress-common-lines --width=width195,6885 | 2756 | regex.o:regex.o159,6031 |
| 2720 | TEXTAGS=204,7127 | 2757 | getopt.o:getopt.o162,6086 |
| 2721 | TEXTAGS=def:newcommand:newenvironment ${RUN} etags$* --regex=regex204,7127 | 2758 | getopt1.o:getopt1.o165,6147 |
| 2722 | ${RUN} etags12 --members -o $@ --regex=regex207,7244 | 2759 | etags:etags168,6210 |
| 2723 | ${RUN} ./ctags -o $@ --regex=regex213,7393 | 2760 | ctags:ctags171,6299 |
| 2724 | ${RUN} ctags$* -wtTd --globals --members -o $@ --regex=regex216,7469 | 2761 | man manpage:man manpage174,6396 |
| 2725 | TEXTAGS=219,7588 | 2762 | etags.1.man:etags.1.man176,6422 |
| 2726 | TEXTAGS=def:newcommand:newenvironment ${RUN} ctags$* -wt -o $@ --regex=regex219,7588 | 2763 | maintaining.info:maintaining.info179,6475 |
| 2727 | ${RUN} ./extags -e --regex-c=c222,7715 | 2764 | TAGS:TAGS182,6557 |
| 2765 | %ediff:%ediff185,6587 | ||
| 2766 | oediff:oediff188,6677 | ||
| 2767 | %cdiff:%cdiff191,6764 | ||
| 2768 | xdiff:xdiff194,6854 | ||
| 2769 | ETAGS:ETAGS197,6942 | ||
| 2770 | ETAGS%:ETAGS%200,7012 | ||
| 2771 | ETAGS13 ETAGS14 ETAGS15:ETAGS13 ETAGS14 ETAGS15203,7084 | ||
| 2772 | ETAGS12:ETAGS12206,7216 | ||
| 2773 | OTAGS:OTAGS209,7304 | ||
| 2774 | CTAGS:CTAGS212,7369 | ||
| 2775 | CTAGS%:CTAGS%215,7443 | ||
| 2776 | CTAGS13 CTAGS14 CTAGS15:CTAGS13 CTAGS14 CTAGS15218,7545 | ||
| 2777 | EXTAGS:EXTAGS221,7680 | ||
| 2778 | .PRECIOUS:.PRECIOUS224,7838 | ||
| 2779 | FRC:FRC226,7894 | ||
| 2728 | 2780 | ||
| 2729 | objc-src/Subprocess.h,98 | 2781 | objc-src/Subprocess.h,98 |
| 2730 | #define Subprocess 41,1217 | 2782 | #define Subprocess 41,1217 |
| @@ -3356,17 +3408,33 @@ module ModuleExample1,0 | |||
| 3356 | def module_instance_method46,1051 | 3408 | def module_instance_method46,1051 |
| 3357 | def ModuleExample.module_class_methodmodule_class_method49,1131 | 3409 | def ModuleExample.module_class_methodmodule_class_method49,1131 |
| 3358 | 3410 | ||
| 3359 | ruby-src/test1.ruby,191 | 3411 | ruby-src/test1.ru,828 |
| 3360 | class A1,0 | 3412 | class A1,0 |
| 3361 | def a(2,8 | 3413 | def a(2,8 |
| 3362 | def b(5,38 | 3414 | def b(5,38 |
| 3363 | module A9,57 | 3415 | module A9,57 |
| 3364 | class B10,66 | 3416 | class B10,66 |
| 3365 | ABC 11,76 | 3417 | ABC 11,76 |
| 3366 | def foo!13,89 | 3418 | Def_ 12,88 |
| 3367 | def self._bar?(_bar?16,111 | 3419 | Xyzzy 13,106 |
| 3368 | def qux=(qux=20,162 | 3420 | def foo!15,121 |
| 3369 | A::Constant Constant26,211 | 3421 | def self._bar?(_bar?18,143 |
| 3422 | def qux=(qux=22,194 | ||
| 3423 | def X25,232 | ||
| 3424 | attr_reader :foofoo26,242 | ||
| 3425 | attr_reader :read1 read127,265 | ||
| 3426 | attr_reader :read1 , :read2;read227,265 | ||
| 3427 | attr_reader :read1 , :read2; attr_writer :write1,write1=27,265 | ||
| 3428 | attr_reader :read1 , :read2; attr_writer :write1, :write2write2=27,265 | ||
| 3429 | attr_writer :bar,bar=28,329 | ||
| 3430 | :baz,baz=29,353 | ||
| 3431 | :moremore=30,377 | ||
| 3432 | attr_accessor :teetee31,401 | ||
| 3433 | attr_accessor :teetee=31,401 | ||
| 3434 | alias_method :qux,qux32,426 | ||
| 3435 | alias_method :xyz,xyz33,478 | ||
| 3436 | :tee ; attr_reader :subtlesubtle34,503 | ||
| 3437 | A::Constant Constant39,568 | ||
| 3370 | 3438 | ||
| 3371 | tex-src/testenv.tex,52 | 3439 | tex-src/testenv.tex,52 |
| 3372 | \newcommand{\nm}\nm4,77 | 3440 | \newcommand{\nm}\nm4,77 |
diff --git a/test/manual/etags/ETAGS.good_4 b/test/manual/etags/ETAGS.good_4 index 40404f9fc6e..32390fab324 100644 --- a/test/manual/etags/ETAGS.good_4 +++ b/test/manual/etags/ETAGS.good_4 | |||
| @@ -2526,49 +2526,101 @@ function Square.something:Bar Bar14,148 | |||
| 2526 | local function test.me22b 25,297 | 2526 | local function test.me22b 25,297 |
| 2527 | local function test.me22b me22b25,297 | 2527 | local function test.me22b me22b25,297 |
| 2528 | 2528 | ||
| 2529 | make-src/Makefile,1133 | 2529 | make-src/Makefile,2175 |
| 2530 | LATEST=1,0 | 2530 | LATEST=1,0 |
| 2531 | RELEASELIST=2,10 | ||
| 2532 | ADASRC=4,104 | ||
| 2533 | ASRC=5,171 | ||
| 2534 | CSRC=6,197 | ||
| 2535 | CPSRC=10,423 | ||
| 2536 | ELSRC=13,614 | ||
| 2537 | ERLSRC=14,661 | ||
| 2538 | FORTHSRC=15,702 | ||
| 2539 | FSRC=16,726 | ||
| 2540 | HTMLSRC=17,776 | ||
| 2541 | JAVASRC=18,844 | ||
| 2542 | LUASRC=19,907 | ||
| 2543 | MAKESRC=20,926 | ||
| 2544 | OBJCSRC=21,943 | ||
| 2545 | OBJCPPSRC=22,999 | ||
| 2546 | PASSRC=23,1035 | ||
| 2547 | PERLSRC=24,1053 | ||
| 2548 | PHPSRC=25,1108 | ||
| 2549 | PSSRC=26,1156 | ||
| 2550 | PROLSRC=27,1173 | ||
| 2551 | PYTSRC=28,1210 | ||
| 2552 | TEXSRC=29,1227 | ||
| 2553 | YSRC=30,1282 | ||
| 2554 | SRCS=31,1325 | ||
| 2531 | NONSRCS=35,1577 | 2555 | NONSRCS=35,1577 |
| 2556 | VHDLFLAGS=37,1624 | ||
| 2557 | COBOLFLAGS=38,1827 | ||
| 2558 | POSTSCRIPTFLAGS=39,1889 | ||
| 2559 | TCLFLAGS=40,1943 | ||
| 2560 | GETOPTOBJS=42,2002 | ||
| 2561 | RXINCLUDE=43,2034 | ||
| 2562 | REGEXOBJS=44,2056 | ||
| 2563 | CHECKOBJS=46,2075 | ||
| 2564 | CHECKFLAGS=47,2105 | ||
| 2565 | OBJS=48,2145 | ||
| 2532 | CPPFLAGS=49,2190 | 2566 | CPPFLAGS=49,2190 |
| 2533 | LDFLAGS=50,2259 | 2567 | LDFLAGS=50,2259 |
| 2568 | WARNINGS=51,2282 | ||
| 2569 | CFLAGS=52,2466 | ||
| 2534 | FASTCFLAGS=55,2530 | 2570 | FASTCFLAGS=55,2530 |
| 2571 | FASTCFLAGSWARN=56,2591 | ||
| 2535 | FILTER=58,2641 | 2572 | FILTER=58,2641 |
| 2536 | @-$($72,3063 | 2573 | REGEX=59,2695 |
| 2537 | @-$($73,3112 | 2574 | xx=60,2741 |
| 2538 | @-$($74,3176 | 2575 | MAKE:MAKE62,2790 |
| 2539 | @-$($75,3222 | 2576 | RUN=63,2825 |
| 2540 | @-$($76,3290 | 2577 | RUN=64,2865 |
| 2541 | @-$($77,3382 | 2578 | OPTIONS=65,2870 |
| 2542 | @$(81,3465 | 2579 | ARGS=66,2922 |
| 2543 | @$(82,3513 | 2580 | infiles 68,2940 |
| 2544 | @$(83,3576 | 2581 | quiettest:quiettest70,3002 |
| 2545 | @$(84,3621 | 2582 | test:test79,3409 |
| 2546 | @$(85,3688 | 2583 | ${CHECKOBJS}:${CHECKOBJS}88,3805 |
| 2547 | @$(86,3779 | 2584 | checker:checker90,3849 |
| 2548 | ${CHECKOBJS}: CFLAGS=88,3805 | 2585 | standalone:standalone96,4062 |
| 2549 | @env CHECKEROPTS=92,3921 | 2586 | prof:prof101,4168 |
| 2550 | @$(98,4093 | 2587 | fastetags:fastetags104,4198 |
| 2551 | @$(106,4249 | 2588 | fastctags:fastctags108,4322 |
| 2552 | @$(110,4373 | 2589 | staticetags:staticetags112,4446 |
| 2553 | @$(114,4499 | 2590 | rsynctofly:rsynctofly116,4608 |
| 2554 | @for i in $(SRCS); do echo $$i;140,5320 | 2591 | rsyncfromfly:rsyncfromfly119,4698 |
| 2555 | $(160,6058 | 2592 | web ftp publish:web ftp publish122,4794 |
| 2556 | $(163,6119 | 2593 | release distrib:release distrib129,5115 |
| 2557 | $(166,6182 | 2594 | tags:tags134,5255 |
| 2558 | $(169,6233 | 2595 | clean:clean136,5267 |
| 2559 | $(172,6322 | 2596 | srclist:srclist139,5302 |
| 2560 | sdiff --suppress-common-lines --width=width186,6619 | 2597 | regexfile:regexfile143,5391 |
| 2561 | sdiff --suppress-common-lines --width=width189,6708 | 2598 | /home/www/pub/etags.c.gz:/home/www/pub/etags.c.gz149,5566 |
| 2562 | sdiff --suppress-common-lines --width=width192,6796 | 2599 | /home/www/pub/software/unix/etags.tar.gz:/home/www/pub/software/unix/etags.tar.gz156,5825 |
| 2563 | sdiff --suppress-common-lines --width=width195,6885 | 2600 | regex.o:regex.o159,6031 |
| 2564 | TEXTAGS=204,7127 | 2601 | getopt.o:getopt.o162,6086 |
| 2565 | TEXTAGS=def:newcommand:newenvironment ${RUN} etags$* --regex=regex204,7127 | 2602 | getopt1.o:getopt1.o165,6147 |
| 2566 | ${RUN} etags12 --members -o $@ --regex=regex207,7244 | 2603 | etags:etags168,6210 |
| 2567 | ${RUN} ./ctags -o $@ --regex=regex213,7393 | 2604 | ctags:ctags171,6299 |
| 2568 | ${RUN} ctags$* -wtTd --globals --members -o $@ --regex=regex216,7469 | 2605 | man manpage:man manpage174,6396 |
| 2569 | TEXTAGS=219,7588 | 2606 | etags.1.man:etags.1.man176,6422 |
| 2570 | TEXTAGS=def:newcommand:newenvironment ${RUN} ctags$* -wt -o $@ --regex=regex219,7588 | 2607 | maintaining.info:maintaining.info179,6475 |
| 2571 | ${RUN} ./extags -e --regex-c=c222,7715 | 2608 | TAGS:TAGS182,6557 |
| 2609 | %ediff:%ediff185,6587 | ||
| 2610 | oediff:oediff188,6677 | ||
| 2611 | %cdiff:%cdiff191,6764 | ||
| 2612 | xdiff:xdiff194,6854 | ||
| 2613 | ETAGS:ETAGS197,6942 | ||
| 2614 | ETAGS%:ETAGS%200,7012 | ||
| 2615 | ETAGS13 ETAGS14 ETAGS15:ETAGS13 ETAGS14 ETAGS15203,7084 | ||
| 2616 | ETAGS12:ETAGS12206,7216 | ||
| 2617 | OTAGS:OTAGS209,7304 | ||
| 2618 | CTAGS:CTAGS212,7369 | ||
| 2619 | CTAGS%:CTAGS%215,7443 | ||
| 2620 | CTAGS13 CTAGS14 CTAGS15:CTAGS13 CTAGS14 CTAGS15218,7545 | ||
| 2621 | EXTAGS:EXTAGS221,7680 | ||
| 2622 | .PRECIOUS:.PRECIOUS224,7838 | ||
| 2623 | FRC:FRC226,7894 | ||
| 2572 | 2624 | ||
| 2573 | objc-src/Subprocess.h,98 | 2625 | objc-src/Subprocess.h,98 |
| 2574 | #define Subprocess 41,1217 | 2626 | #define Subprocess 41,1217 |
| @@ -3173,17 +3225,33 @@ module ModuleExample1,0 | |||
| 3173 | def module_instance_method46,1051 | 3225 | def module_instance_method46,1051 |
| 3174 | def ModuleExample.module_class_methodmodule_class_method49,1131 | 3226 | def ModuleExample.module_class_methodmodule_class_method49,1131 |
| 3175 | 3227 | ||
| 3176 | ruby-src/test1.ruby,191 | 3228 | ruby-src/test1.ru,828 |
| 3177 | class A1,0 | 3229 | class A1,0 |
| 3178 | def a(2,8 | 3230 | def a(2,8 |
| 3179 | def b(5,38 | 3231 | def b(5,38 |
| 3180 | module A9,57 | 3232 | module A9,57 |
| 3181 | class B10,66 | 3233 | class B10,66 |
| 3182 | ABC 11,76 | 3234 | ABC 11,76 |
| 3183 | def foo!13,89 | 3235 | Def_ 12,88 |
| 3184 | def self._bar?(_bar?16,111 | 3236 | Xyzzy 13,106 |
| 3185 | def qux=(qux=20,162 | 3237 | def foo!15,121 |
| 3186 | A::Constant Constant26,211 | 3238 | def self._bar?(_bar?18,143 |
| 3239 | def qux=(qux=22,194 | ||
| 3240 | def X25,232 | ||
| 3241 | attr_reader :foofoo26,242 | ||
| 3242 | attr_reader :read1 read127,265 | ||
| 3243 | attr_reader :read1 , :read2;read227,265 | ||
| 3244 | attr_reader :read1 , :read2; attr_writer :write1,write1=27,265 | ||
| 3245 | attr_reader :read1 , :read2; attr_writer :write1, :write2write2=27,265 | ||
| 3246 | attr_writer :bar,bar=28,329 | ||
| 3247 | :baz,baz=29,353 | ||
| 3248 | :moremore=30,377 | ||
| 3249 | attr_accessor :teetee31,401 | ||
| 3250 | attr_accessor :teetee=31,401 | ||
| 3251 | alias_method :qux,qux32,426 | ||
| 3252 | alias_method :xyz,xyz33,478 | ||
| 3253 | :tee ; attr_reader :subtlesubtle34,503 | ||
| 3254 | A::Constant Constant39,568 | ||
| 3187 | 3255 | ||
| 3188 | tex-src/testenv.tex,52 | 3256 | tex-src/testenv.tex,52 |
| 3189 | \newcommand{\nm}\nm4,77 | 3257 | \newcommand{\nm}\nm4,77 |
diff --git a/test/manual/etags/ETAGS.good_5 b/test/manual/etags/ETAGS.good_5 index 432819d3b32..ee19bcfc9d2 100644 --- a/test/manual/etags/ETAGS.good_5 +++ b/test/manual/etags/ETAGS.good_5 | |||
| @@ -3415,50 +3415,101 @@ function Square.something:Bar Bar14,148 | |||
| 3415 | local function test.me22b 25,297 | 3415 | local function test.me22b 25,297 |
| 3416 | local function test.me22b me22b25,297 | 3416 | local function test.me22b me22b25,297 |
| 3417 | 3417 | ||
| 3418 | make-src/Makefile,1156 | 3418 | make-src/Makefile,2175 |
| 3419 | LATEST=1,0 | 3419 | LATEST=1,0 |
| 3420 | RELEASELIST=2,10 | ||
| 3421 | ADASRC=4,104 | ||
| 3422 | ASRC=5,171 | ||
| 3423 | CSRC=6,197 | ||
| 3424 | CPSRC=10,423 | ||
| 3425 | ELSRC=13,614 | ||
| 3426 | ERLSRC=14,661 | ||
| 3427 | FORTHSRC=15,702 | ||
| 3428 | FSRC=16,726 | ||
| 3429 | HTMLSRC=17,776 | ||
| 3430 | JAVASRC=18,844 | ||
| 3431 | LUASRC=19,907 | ||
| 3432 | MAKESRC=20,926 | ||
| 3433 | OBJCSRC=21,943 | ||
| 3434 | OBJCPPSRC=22,999 | ||
| 3435 | PASSRC=23,1035 | ||
| 3436 | PERLSRC=24,1053 | ||
| 3437 | PHPSRC=25,1108 | ||
| 3438 | PSSRC=26,1156 | ||
| 3439 | PROLSRC=27,1173 | ||
| 3440 | PYTSRC=28,1210 | ||
| 3441 | TEXSRC=29,1227 | ||
| 3442 | YSRC=30,1282 | ||
| 3443 | SRCS=31,1325 | ||
| 3420 | NONSRCS=35,1577 | 3444 | NONSRCS=35,1577 |
| 3445 | VHDLFLAGS=37,1624 | ||
| 3446 | COBOLFLAGS=38,1827 | ||
| 3447 | POSTSCRIPTFLAGS=39,1889 | ||
| 3448 | TCLFLAGS=40,1943 | ||
| 3449 | GETOPTOBJS=42,2002 | ||
| 3450 | RXINCLUDE=43,2034 | ||
| 3451 | REGEXOBJS=44,2056 | ||
| 3452 | CHECKOBJS=46,2075 | ||
| 3453 | CHECKFLAGS=47,2105 | ||
| 3454 | OBJS=48,2145 | ||
| 3421 | CPPFLAGS=49,2190 | 3455 | CPPFLAGS=49,2190 |
| 3422 | LDFLAGS=50,2259 | 3456 | LDFLAGS=50,2259 |
| 3457 | WARNINGS=51,2282 | ||
| 3458 | CFLAGS=52,2466 | ||
| 3423 | FASTCFLAGS=55,2530 | 3459 | FASTCFLAGS=55,2530 |
| 3460 | FASTCFLAGSWARN=56,2591 | ||
| 3424 | FILTER=58,2641 | 3461 | FILTER=58,2641 |
| 3425 | @-$($72,3063 | 3462 | REGEX=59,2695 |
| 3426 | @-$($73,3112 | 3463 | xx=60,2741 |
| 3427 | @-$($74,3176 | 3464 | MAKE:MAKE62,2790 |
| 3428 | @-$($75,3222 | 3465 | RUN=63,2825 |
| 3429 | @-$($76,3290 | 3466 | RUN=64,2865 |
| 3430 | @-$($77,3382 | 3467 | OPTIONS=65,2870 |
| 3431 | @$(81,3465 | 3468 | ARGS=66,2922 |
| 3432 | @$(82,3513 | 3469 | infiles 68,2940 |
| 3433 | @$(83,3576 | 3470 | quiettest:quiettest70,3002 |
| 3434 | @$(84,3621 | 3471 | test:test79,3409 |
| 3435 | @$(85,3688 | 3472 | ${CHECKOBJS}:${CHECKOBJS}88,3805 |
| 3436 | @$(86,3779 | 3473 | checker:checker90,3849 |
| 3437 | ${CHECKOBJS}: CFLAGS=88,3805 | 3474 | standalone:standalone96,4062 |
| 3438 | @env CHECKEROPTS=92,3921 | 3475 | prof:prof101,4168 |
| 3439 | @$(98,4093 | 3476 | fastetags:fastetags104,4198 |
| 3440 | @$(106,4249 | 3477 | fastctags:fastctags108,4322 |
| 3441 | @$(110,4373 | 3478 | staticetags:staticetags112,4446 |
| 3442 | @$(114,4499 | 3479 | rsynctofly:rsynctofly116,4608 |
| 3443 | @for i in $(140,5320 | 3480 | rsyncfromfly:rsyncfromfly119,4698 |
| 3444 | @for i in $(SRCS); do echo $$i;140,5320 | 3481 | web ftp publish:web ftp publish122,4794 |
| 3445 | $(160,6058 | 3482 | release distrib:release distrib129,5115 |
| 3446 | $(163,6119 | 3483 | tags:tags134,5255 |
| 3447 | $(166,6182 | 3484 | clean:clean136,5267 |
| 3448 | $(169,6233 | 3485 | srclist:srclist139,5302 |
| 3449 | $(172,6322 | 3486 | regexfile:regexfile143,5391 |
| 3450 | sdiff --suppress-common-lines --width=width186,6619 | 3487 | /home/www/pub/etags.c.gz:/home/www/pub/etags.c.gz149,5566 |
| 3451 | sdiff --suppress-common-lines --width=width189,6708 | 3488 | /home/www/pub/software/unix/etags.tar.gz:/home/www/pub/software/unix/etags.tar.gz156,5825 |
| 3452 | sdiff --suppress-common-lines --width=width192,6796 | 3489 | regex.o:regex.o159,6031 |
| 3453 | sdiff --suppress-common-lines --width=width195,6885 | 3490 | getopt.o:getopt.o162,6086 |
| 3454 | TEXTAGS=204,7127 | 3491 | getopt1.o:getopt1.o165,6147 |
| 3455 | TEXTAGS=def:newcommand:newenvironment ${RUN} etags$* --regex=regex204,7127 | 3492 | etags:etags168,6210 |
| 3456 | ${RUN} etags12 --members -o $@ --regex=regex207,7244 | 3493 | ctags:ctags171,6299 |
| 3457 | ${RUN} ./ctags -o $@ --regex=regex213,7393 | 3494 | man manpage:man manpage174,6396 |
| 3458 | ${RUN} ctags$* -wtTd --globals --members -o $@ --regex=regex216,7469 | 3495 | etags.1.man:etags.1.man176,6422 |
| 3459 | TEXTAGS=219,7588 | 3496 | maintaining.info:maintaining.info179,6475 |
| 3460 | TEXTAGS=def:newcommand:newenvironment ${RUN} ctags$* -wt -o $@ --regex=regex219,7588 | 3497 | TAGS:TAGS182,6557 |
| 3461 | ${RUN} ./extags -e --regex-c=c222,7715 | 3498 | %ediff:%ediff185,6587 |
| 3499 | oediff:oediff188,6677 | ||
| 3500 | %cdiff:%cdiff191,6764 | ||
| 3501 | xdiff:xdiff194,6854 | ||
| 3502 | ETAGS:ETAGS197,6942 | ||
| 3503 | ETAGS%:ETAGS%200,7012 | ||
| 3504 | ETAGS13 ETAGS14 ETAGS15:ETAGS13 ETAGS14 ETAGS15203,7084 | ||
| 3505 | ETAGS12:ETAGS12206,7216 | ||
| 3506 | OTAGS:OTAGS209,7304 | ||
| 3507 | CTAGS:CTAGS212,7369 | ||
| 3508 | CTAGS%:CTAGS%215,7443 | ||
| 3509 | CTAGS13 CTAGS14 CTAGS15:CTAGS13 CTAGS14 CTAGS15218,7545 | ||
| 3510 | EXTAGS:EXTAGS221,7680 | ||
| 3511 | .PRECIOUS:.PRECIOUS224,7838 | ||
| 3512 | FRC:FRC226,7894 | ||
| 3462 | 3513 | ||
| 3463 | objc-src/Subprocess.h,98 | 3514 | objc-src/Subprocess.h,98 |
| 3464 | #define Subprocess 41,1217 | 3515 | #define Subprocess 41,1217 |
| @@ -4091,17 +4142,33 @@ module ModuleExample1,0 | |||
| 4091 | def module_instance_method46,1051 | 4142 | def module_instance_method46,1051 |
| 4092 | def ModuleExample.module_class_methodmodule_class_method49,1131 | 4143 | def ModuleExample.module_class_methodmodule_class_method49,1131 |
| 4093 | 4144 | ||
| 4094 | ruby-src/test1.ruby,191 | 4145 | ruby-src/test1.ru,828 |
| 4095 | class A1,0 | 4146 | class A1,0 |
| 4096 | def a(2,8 | 4147 | def a(2,8 |
| 4097 | def b(5,38 | 4148 | def b(5,38 |
| 4098 | module A9,57 | 4149 | module A9,57 |
| 4099 | class B10,66 | 4150 | class B10,66 |
| 4100 | ABC 11,76 | 4151 | ABC 11,76 |
| 4101 | def foo!13,89 | 4152 | Def_ 12,88 |
| 4102 | def self._bar?(_bar?16,111 | 4153 | Xyzzy 13,106 |
| 4103 | def qux=(qux=20,162 | 4154 | def foo!15,121 |
| 4104 | A::Constant Constant26,211 | 4155 | def self._bar?(_bar?18,143 |
| 4156 | def qux=(qux=22,194 | ||
| 4157 | def X25,232 | ||
| 4158 | attr_reader :foofoo26,242 | ||
| 4159 | attr_reader :read1 read127,265 | ||
| 4160 | attr_reader :read1 , :read2;read227,265 | ||
| 4161 | attr_reader :read1 , :read2; attr_writer :write1,write1=27,265 | ||
| 4162 | attr_reader :read1 , :read2; attr_writer :write1, :write2write2=27,265 | ||
| 4163 | attr_writer :bar,bar=28,329 | ||
| 4164 | :baz,baz=29,353 | ||
| 4165 | :moremore=30,377 | ||
| 4166 | attr_accessor :teetee31,401 | ||
| 4167 | attr_accessor :teetee=31,401 | ||
| 4168 | alias_method :qux,qux32,426 | ||
| 4169 | alias_method :xyz,xyz33,478 | ||
| 4170 | :tee ; attr_reader :subtlesubtle34,503 | ||
| 4171 | A::Constant Constant39,568 | ||
| 4105 | 4172 | ||
| 4106 | tex-src/testenv.tex,52 | 4173 | tex-src/testenv.tex,52 |
| 4107 | \newcommand{\nm}\nm4,77 | 4174 | \newcommand{\nm}\nm4,77 |
diff --git a/test/manual/etags/ETAGS.good_6 b/test/manual/etags/ETAGS.good_6 index 4ad5d76db27..f4d9ab8c1a1 100644 --- a/test/manual/etags/ETAGS.good_6 +++ b/test/manual/etags/ETAGS.good_6 | |||
| @@ -3415,50 +3415,101 @@ function Square.something:Bar Bar14,148 | |||
| 3415 | local function test.me22b 25,297 | 3415 | local function test.me22b 25,297 |
| 3416 | local function test.me22b me22b25,297 | 3416 | local function test.me22b me22b25,297 |
| 3417 | 3417 | ||
| 3418 | make-src/Makefile,1156 | 3418 | make-src/Makefile,2175 |
| 3419 | LATEST=1,0 | 3419 | LATEST=1,0 |
| 3420 | RELEASELIST=2,10 | ||
| 3421 | ADASRC=4,104 | ||
| 3422 | ASRC=5,171 | ||
| 3423 | CSRC=6,197 | ||
| 3424 | CPSRC=10,423 | ||
| 3425 | ELSRC=13,614 | ||
| 3426 | ERLSRC=14,661 | ||
| 3427 | FORTHSRC=15,702 | ||
| 3428 | FSRC=16,726 | ||
| 3429 | HTMLSRC=17,776 | ||
| 3430 | JAVASRC=18,844 | ||
| 3431 | LUASRC=19,907 | ||
| 3432 | MAKESRC=20,926 | ||
| 3433 | OBJCSRC=21,943 | ||
| 3434 | OBJCPPSRC=22,999 | ||
| 3435 | PASSRC=23,1035 | ||
| 3436 | PERLSRC=24,1053 | ||
| 3437 | PHPSRC=25,1108 | ||
| 3438 | PSSRC=26,1156 | ||
| 3439 | PROLSRC=27,1173 | ||
| 3440 | PYTSRC=28,1210 | ||
| 3441 | TEXSRC=29,1227 | ||
| 3442 | YSRC=30,1282 | ||
| 3443 | SRCS=31,1325 | ||
| 3420 | NONSRCS=35,1577 | 3444 | NONSRCS=35,1577 |
| 3445 | VHDLFLAGS=37,1624 | ||
| 3446 | COBOLFLAGS=38,1827 | ||
| 3447 | POSTSCRIPTFLAGS=39,1889 | ||
| 3448 | TCLFLAGS=40,1943 | ||
| 3449 | GETOPTOBJS=42,2002 | ||
| 3450 | RXINCLUDE=43,2034 | ||
| 3451 | REGEXOBJS=44,2056 | ||
| 3452 | CHECKOBJS=46,2075 | ||
| 3453 | CHECKFLAGS=47,2105 | ||
| 3454 | OBJS=48,2145 | ||
| 3421 | CPPFLAGS=49,2190 | 3455 | CPPFLAGS=49,2190 |
| 3422 | LDFLAGS=50,2259 | 3456 | LDFLAGS=50,2259 |
| 3457 | WARNINGS=51,2282 | ||
| 3458 | CFLAGS=52,2466 | ||
| 3423 | FASTCFLAGS=55,2530 | 3459 | FASTCFLAGS=55,2530 |
| 3460 | FASTCFLAGSWARN=56,2591 | ||
| 3424 | FILTER=58,2641 | 3461 | FILTER=58,2641 |
| 3425 | @-$($72,3063 | 3462 | REGEX=59,2695 |
| 3426 | @-$($73,3112 | 3463 | xx=60,2741 |
| 3427 | @-$($74,3176 | 3464 | MAKE:MAKE62,2790 |
| 3428 | @-$($75,3222 | 3465 | RUN=63,2825 |
| 3429 | @-$($76,3290 | 3466 | RUN=64,2865 |
| 3430 | @-$($77,3382 | 3467 | OPTIONS=65,2870 |
| 3431 | @$(81,3465 | 3468 | ARGS=66,2922 |
| 3432 | @$(82,3513 | 3469 | infiles 68,2940 |
| 3433 | @$(83,3576 | 3470 | quiettest:quiettest70,3002 |
| 3434 | @$(84,3621 | 3471 | test:test79,3409 |
| 3435 | @$(85,3688 | 3472 | ${CHECKOBJS}:${CHECKOBJS}88,3805 |
| 3436 | @$(86,3779 | 3473 | checker:checker90,3849 |
| 3437 | ${CHECKOBJS}: CFLAGS=88,3805 | 3474 | standalone:standalone96,4062 |
| 3438 | @env CHECKEROPTS=92,3921 | 3475 | prof:prof101,4168 |
| 3439 | @$(98,4093 | 3476 | fastetags:fastetags104,4198 |
| 3440 | @$(106,4249 | 3477 | fastctags:fastctags108,4322 |
| 3441 | @$(110,4373 | 3478 | staticetags:staticetags112,4446 |
| 3442 | @$(114,4499 | 3479 | rsynctofly:rsynctofly116,4608 |
| 3443 | @for i in $(140,5320 | 3480 | rsyncfromfly:rsyncfromfly119,4698 |
| 3444 | @for i in $(SRCS); do echo $$i;140,5320 | 3481 | web ftp publish:web ftp publish122,4794 |
| 3445 | $(160,6058 | 3482 | release distrib:release distrib129,5115 |
| 3446 | $(163,6119 | 3483 | tags:tags134,5255 |
| 3447 | $(166,6182 | 3484 | clean:clean136,5267 |
| 3448 | $(169,6233 | 3485 | srclist:srclist139,5302 |
| 3449 | $(172,6322 | 3486 | regexfile:regexfile143,5391 |
| 3450 | sdiff --suppress-common-lines --width=width186,6619 | 3487 | /home/www/pub/etags.c.gz:/home/www/pub/etags.c.gz149,5566 |
| 3451 | sdiff --suppress-common-lines --width=width189,6708 | 3488 | /home/www/pub/software/unix/etags.tar.gz:/home/www/pub/software/unix/etags.tar.gz156,5825 |
| 3452 | sdiff --suppress-common-lines --width=width192,6796 | 3489 | regex.o:regex.o159,6031 |
| 3453 | sdiff --suppress-common-lines --width=width195,6885 | 3490 | getopt.o:getopt.o162,6086 |
| 3454 | TEXTAGS=204,7127 | 3491 | getopt1.o:getopt1.o165,6147 |
| 3455 | TEXTAGS=def:newcommand:newenvironment ${RUN} etags$* --regex=regex204,7127 | 3492 | etags:etags168,6210 |
| 3456 | ${RUN} etags12 --members -o $@ --regex=regex207,7244 | 3493 | ctags:ctags171,6299 |
| 3457 | ${RUN} ./ctags -o $@ --regex=regex213,7393 | 3494 | man manpage:man manpage174,6396 |
| 3458 | ${RUN} ctags$* -wtTd --globals --members -o $@ --regex=regex216,7469 | 3495 | etags.1.man:etags.1.man176,6422 |
| 3459 | TEXTAGS=219,7588 | 3496 | maintaining.info:maintaining.info179,6475 |
| 3460 | TEXTAGS=def:newcommand:newenvironment ${RUN} ctags$* -wt -o $@ --regex=regex219,7588 | 3497 | TAGS:TAGS182,6557 |
| 3461 | ${RUN} ./extags -e --regex-c=c222,7715 | 3498 | %ediff:%ediff185,6587 |
| 3499 | oediff:oediff188,6677 | ||
| 3500 | %cdiff:%cdiff191,6764 | ||
| 3501 | xdiff:xdiff194,6854 | ||
| 3502 | ETAGS:ETAGS197,6942 | ||
| 3503 | ETAGS%:ETAGS%200,7012 | ||
| 3504 | ETAGS13 ETAGS14 ETAGS15:ETAGS13 ETAGS14 ETAGS15203,7084 | ||
| 3505 | ETAGS12:ETAGS12206,7216 | ||
| 3506 | OTAGS:OTAGS209,7304 | ||
| 3507 | CTAGS:CTAGS212,7369 | ||
| 3508 | CTAGS%:CTAGS%215,7443 | ||
| 3509 | CTAGS13 CTAGS14 CTAGS15:CTAGS13 CTAGS14 CTAGS15218,7545 | ||
| 3510 | EXTAGS:EXTAGS221,7680 | ||
| 3511 | .PRECIOUS:.PRECIOUS224,7838 | ||
| 3512 | FRC:FRC226,7894 | ||
| 3462 | 3513 | ||
| 3463 | objc-src/Subprocess.h,98 | 3514 | objc-src/Subprocess.h,98 |
| 3464 | #define Subprocess 41,1217 | 3515 | #define Subprocess 41,1217 |
| @@ -4091,17 +4142,33 @@ module ModuleExample1,0 | |||
| 4091 | def module_instance_method46,1051 | 4142 | def module_instance_method46,1051 |
| 4092 | def ModuleExample.module_class_methodmodule_class_method49,1131 | 4143 | def ModuleExample.module_class_methodmodule_class_method49,1131 |
| 4093 | 4144 | ||
| 4094 | ruby-src/test1.ruby,191 | 4145 | ruby-src/test1.ru,828 |
| 4095 | class A1,0 | 4146 | class A1,0 |
| 4096 | def a(2,8 | 4147 | def a(2,8 |
| 4097 | def b(5,38 | 4148 | def b(5,38 |
| 4098 | module A9,57 | 4149 | module A9,57 |
| 4099 | class B10,66 | 4150 | class B10,66 |
| 4100 | ABC 11,76 | 4151 | ABC 11,76 |
| 4101 | def foo!13,89 | 4152 | Def_ 12,88 |
| 4102 | def self._bar?(_bar?16,111 | 4153 | Xyzzy 13,106 |
| 4103 | def qux=(qux=20,162 | 4154 | def foo!15,121 |
| 4104 | A::Constant Constant26,211 | 4155 | def self._bar?(_bar?18,143 |
| 4156 | def qux=(qux=22,194 | ||
| 4157 | def X25,232 | ||
| 4158 | attr_reader :foofoo26,242 | ||
| 4159 | attr_reader :read1 read127,265 | ||
| 4160 | attr_reader :read1 , :read2;read227,265 | ||
| 4161 | attr_reader :read1 , :read2; attr_writer :write1,write1=27,265 | ||
| 4162 | attr_reader :read1 , :read2; attr_writer :write1, :write2write2=27,265 | ||
| 4163 | attr_writer :bar,bar=28,329 | ||
| 4164 | :baz,baz=29,353 | ||
| 4165 | :moremore=30,377 | ||
| 4166 | attr_accessor :teetee31,401 | ||
| 4167 | attr_accessor :teetee=31,401 | ||
| 4168 | alias_method :qux,qux32,426 | ||
| 4169 | alias_method :xyz,xyz33,478 | ||
| 4170 | :tee ; attr_reader :subtlesubtle34,503 | ||
| 4171 | A::Constant Constant39,568 | ||
| 4105 | 4172 | ||
| 4106 | tex-src/testenv.tex,52 | 4173 | tex-src/testenv.tex,52 |
| 4107 | \newcommand{\nm}\nm4,77 | 4174 | \newcommand{\nm}\nm4,77 |
diff --git a/test/manual/etags/Makefile b/test/manual/etags/Makefile index a0cb90145e6..07ad0f46416 100644 --- a/test/manual/etags/Makefile +++ b/test/manual/etags/Makefile | |||
| @@ -24,7 +24,7 @@ PHPSRC=$(addprefix ./php-src/,lce_functions.php ptest.php sendmail.php) | |||
| 24 | PSSRC=$(addprefix ./ps-src/,rfc1245.ps) | 24 | PSSRC=$(addprefix ./ps-src/,rfc1245.ps) |
| 25 | PROLSRC=$(addprefix ./prol-src/,ordsets.prolog natded.prolog) | 25 | PROLSRC=$(addprefix ./prol-src/,ordsets.prolog natded.prolog) |
| 26 | PYTSRC=$(addprefix ./pyt-src/,server.py) | 26 | PYTSRC=$(addprefix ./pyt-src/,server.py) |
| 27 | RBSRC=$(addprefix ./ruby-src/,test.rb test1.ruby) | 27 | RBSRC=$(addprefix ./ruby-src/,test.rb test1.ru) |
| 28 | TEXSRC=$(addprefix ./tex-src/,testenv.tex gzip.texi texinfo.tex nonewline.tex) | 28 | TEXSRC=$(addprefix ./tex-src/,testenv.tex gzip.texi texinfo.tex nonewline.tex) |
| 29 | YSRC=$(addprefix ./y-src/,parse.y parse.c atest.y cccp.c cccp.y) | 29 | YSRC=$(addprefix ./y-src/,parse.y parse.c atest.y cccp.c cccp.y) |
| 30 | SRCS=${ADASRC} ${ASRC} ${CSRC} ${CPSRC} ${ELSRC} ${ERLSRC} ${FSRC}\ | 30 | SRCS=${ADASRC} ${ASRC} ${CSRC} ${CPSRC} ${ELSRC} ${ERLSRC} ${FSRC}\ |
diff --git a/test/manual/indent/css-mode.css b/test/manual/indent/css-mode.css index 24166b00282..3a00739bfc4 100644 --- a/test/manual/indent/css-mode.css +++ b/test/manual/indent/css-mode.css | |||
| @@ -9,7 +9,7 @@ article[role="main"] { | |||
| 9 | } | 9 | } |
| 10 | 10 | ||
| 11 | a, b:hover, c { | 11 | a, b:hover, c { |
| 12 | color: black; | 12 | color: black !important; |
| 13 | } | 13 | } |
| 14 | 14 | ||
| 15 | a, b:hover { /* bug:20282 */ | 15 | a, b:hover { /* bug:20282 */ |
diff --git a/test/manual/indent/scss-mode.scss b/test/manual/indent/scss-mode.scss index 02a4a98a8c5..e1ec90a5299 100644 --- a/test/manual/indent/scss-mode.scss +++ b/test/manual/indent/scss-mode.scss | |||
| @@ -40,11 +40,20 @@ p.#{$name} var | |||
| 40 | } | 40 | } |
| 41 | article[role="main"] { | 41 | article[role="main"] { |
| 42 | $toto: 500 !global; | 42 | $toto: 500 !global; |
| 43 | float: left; | 43 | $var-with-default: 300 !default; |
| 44 | float: left !important; | ||
| 44 | width: 600px / 888px * 100%; | 45 | width: 600px / 888px * 100%; |
| 45 | height: 100px / 888px * 100%; | 46 | height: 100px / 888px * 100%; |
| 46 | } | 47 | } |
| 47 | 48 | ||
| 49 | %placeholder { | ||
| 50 | color: #f0f0f0; | ||
| 51 | } | ||
| 52 | |||
| 53 | button { | ||
| 54 | @extend %placeholder !optional; | ||
| 55 | } | ||
| 56 | |||
| 48 | @import 'reset'; | 57 | @import 'reset'; |
| 49 | 58 | ||
| 50 | @mixin border-radius($radius) { | 59 | @mixin border-radius($radius) { |