]> git.eshelyaron.com Git - emacs.git/commitdiff
Backport: Port pre-commit hook to Git 2.35.0
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 23 Feb 2022 19:29:56 +0000 (11:29 -0800)
committerRobert Pluim <rpluim@gmail.com>
Tue, 1 Mar 2022 09:01:11 +0000 (10:01 +0100)
* build-aux/git-hooks/pre-commit: Use LC_ALL=C grep -E instead of
sane_egrep (removed in Git 2.35.0).

(cherry picked from commit b8a96f055624f86fe965a0d1b7b2495b2db80e63)

build-aux/git-hooks/pre-commit

index a55004680fa19e93baf14eea457d1372963953e1..49bf05f2d9fdeed201b51bbc466d4cb58ee02929 100755 (executable)
@@ -45,7 +45,9 @@ git_diff='git diff --cached --name-only --diff-filter=A'
 
 # 'git diff' will backslash escape tabs and newlines, so we don't have
 # to worry about word splitting here.
-$git_diff $head | sane_egrep 'ChangeLog|^-|/-|[^-+./_0-9A-Z_a-z]' | while IFS= read -r new_name; do
+$git_diff $head |
+LC_ALL=C grep -E 'ChangeLog|^-|/-|[^-+./_0-9A-Z_a-z]' |
+while IFS= read -r new_name; do
   case $new_name in
     -* | */-*)
       echo "$new_name: File name component begins with '-'."