annotate netinstall/version.pl @ 2630:1ea43ec83f12

[xemacs-hg @ 2005-03-02 21:37:54 by adrian] xemacs-21.5-clean: Re: Patch my ego -------------------- ChangeLog entries follow: -------------------- lisp/ChangeLog addition: 2005-02-28 Simon Josefsson <jas@extundo.com> * about.el (xemacs-hackers): Add jas. (about-other-current-hackers): Likewise. (about-url-alist): Add URL for jas. (about-personal-info): Document jas. (about-hacker-contribution): Describe jas contributions.
author adrian
date Wed, 02 Mar 2005 21:37:55 +0000
parents 3078fd1074e8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
1 while (<STDIN>) {
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
2 if (/^\$Revision:\s*([0-9\.]*)/) {
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
3 print "char *version = \"$1\";\n";
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
4 print "static char *id = \"\\n%%% setup-version $1\\n\";\n";
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
5 }
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
6 }