From: Eric S. Raymond Date: Sat, 25 Oct 2014 20:11:24 +0000 (-0400) Subject: Looking for .bzr as a check for top-level directory will soon be a bad idea. X-Git-Tag: emacs-25.0.90~2635^2~644 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8e297e0a84329beaf2146ad846baca86c2378f62;p=emacs.git Looking for .bzr as a check for top-level directory will soon be a bad idea. Fortunately the other two checks should be quite sufficient. --- diff --git a/admin/check-doc-strings b/admin/check-doc-strings index a0b5acb623f..13e8b0cd8e7 100755 --- a/admin/check-doc-strings +++ b/admin/check-doc-strings @@ -18,7 +18,7 @@ formal parameters, docstrings, and lispref texi. This program is in the public domain.\n"; die $usage if @ARGV; -die $usage unless -r "src/alloc.c" && -d ".bzr" && -d "lisp"; +die $usage unless -r "src/alloc.c" && -d "lisp"; my %texi_funtype; my %texi_arglist;