view netinstall/version.pl @ 5099:a24f2ab0093b

Avoid the query-coding-tests.el hang, by fixing a logic bug. 2010-03-05 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (delete-duplicates): Correct the logic of this compiler macro when :from-end is nil, avoiding a hang in query-coding-tests.el. Thanks for the reports, Vin and Mats!
author Aidan Kehoe <kehoea@parhasard.net>
date Fri, 05 Mar 2010 15:11:52 +0000
parents 3078fd1074e8
children
line wrap: on
line source

while (<STDIN>) {
  if (/^\$Revision:\s*([0-9\.]*)/) {
    print "char *version = \"$1\";\n";
    print "static char *id = \"\\n%%% setup-version $1\\n\";\n";
  }
}