diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-08-06 14:30:09 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-08-06 14:30:09 +0200 |
commit | a1e07057c416132b3125436010adb876886c6677 (patch) | |
tree | e4aa839366dd7beefa6a3f6a70632a0a593af7d6 | |
parent | db5bc208fb36a09b46582dcf7a4428cb01dca67f (diff) | |
download | emacs-a1e07057c416132b3125436010adb876886c6677.tar.gz emacs-a1e07057c416132b3125436010adb876886c6677.tar.bz2 emacs-a1e07057c416132b3125436010adb876886c6677.zip |
* admin/check-doc-strings: Remove XEmacs support.
-rwxr-xr-x | admin/check-doc-strings | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/admin/check-doc-strings b/admin/check-doc-strings index 135090b34ce..b119b50885b 100755 --- a/admin/check-doc-strings +++ b/admin/check-doc-strings @@ -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; |