summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1998-06-26 19:52:54 -0400
committerGurusamy Sarathy <gsar@cpan.org>1998-06-28 20:54:43 +0000
commit79e58eb31bcd807aa3590e1d48e9343596eec282 (patch)
tree078f22979e30e01edd4bd435842deab5dcfdb6bb /emacs
parent6e90668e1db851a5ebb8b52e4f390cb5d4e8e278 (diff)
downloadperl-79e58eb31bcd807aa3590e1d48e9343596eec282.tar.gz
Fix ptags
Message-Id: <199806270352.XAA21174@monk.mps.ohio-state.edu> p4raw-id: //depot/perl@1248
Diffstat (limited to 'emacs')
-rwxr-xr-xemacs/ptags16
1 files changed, 14 insertions, 2 deletions
diff --git a/emacs/ptags b/emacs/ptags
index d71d1b3f50..d8d4926227 100755
--- a/emacs/ptags
+++ b/emacs/ptags
@@ -22,7 +22,7 @@ topfiles="`echo ' ' *.y *.c *.h ' ' | sed 's/ embed.h / /'`"
subdirfiles="`( find ./*/* -name '*.[cy]' -print | sort ; find ./*/* -name '*.[hH]' -print | sort )`"
xsfiles="`find . -name '*.xs' -print | sort`"
-# What is `etags -d'?
+# etags -d : process defineds too (default now)
# These are example lines for global variables and PP-code:
## IEXT SV * Iparsehook;
@@ -49,6 +49,18 @@ etags -o TAGS.tmp \
etags -o TAGS.tmp -a "$@" $topfiles
etags -o TAGS.tmp -a -D -l none -r '/#define.*\t\(Perl_.*\)/\1/' embed.h
+perl -w014pe 'if (s/^( [^\n\x7F\x1]*\b # 1: TAG group
+ (\w+) # 2: word
+ [^\w\x7X\x1\n]* # Most anything
+ \x7F # End of description
+ )
+ (\d+,\d+\n) # 3: TAGS Trail
+ /$1$2\x1$3/mgx) { # Add specific marking
+ $chars = chomp;
+ s/^((\n.+,)\d+)/ $2 . (length($_) - length($1) - 1) /e;
+ $_ .= ("\f" x $chars);
+ }' TAGS.tmp > TAGS.tm1 && mv TAGS.tm1 TAGS.tmp
+
# Add MODULE lines to TAG files (to be postprocessed later),
# and BOOT: lines (in DynaLoader processed twice?)
@@ -71,7 +83,7 @@ etags -o TAGS.tmp -a -d -l c \
etags -o TAGS.tmp -a "$@" $subdirfiles
-if ! test -f emacs/cperl-mode.elc ; then
+if test ! -f emacs/cperl-mode.elc ; then
( cd emacs; emacs -batch -q -no-site-file -f batch-byte-compile cperl-mode.el )
fi