]> git.eshelyaron.com Git - emacs.git/commitdiff
* admin/check-doc-strings: Remove XEmacs support.
authorStefan Kangas <stefan@marxist.se>
Sat, 6 Aug 2022 12:30:09 +0000 (14:30 +0200)
committerStefan Kangas <stefan@marxist.se>
Sat, 6 Aug 2022 12:30:09 +0000 (14:30 +0200)
admin/check-doc-strings

index 135090b34cec361d043793944a309a236cdbf393..b119b50885b7aac94dcf607ff789c117f95e9acd 100755 (executable)
@@ -290,13 +290,7 @@ while (my $file = <FIND>) {
   }
 }
 
-my @pkgs;
-if (-d "../xemacs-packages") {
-  @pkgs = qw (libs/edebug libs/xemacs-base comm/eudc oa/edit-utils);
-} else {
-  @pkgs = ();
-}
-for (@pkgs) { s@^@../xemacs-packages/@; }
+my @pkgs = ();
 open (FIND, "find lisp @pkgs -name '*.el' -print |") or die;
 while (my $file = <FIND>) {
   my $contents = FileContents $file;