diff options
author | Glenn Morris <rgm@gnu.org> | 2011-01-26 00:36:39 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-01-26 00:36:39 -0800 |
commit | 95df8112a0cbdb06addbac5fbea03b37d4440418 (patch) | |
tree | 40de7680f5332a55701dc1477722357dd37803b3 /admin/diff-tar-files | |
parent | 008cad902f3434dc8c490dd0488ae93df4f16d9c (diff) | |
download | emacs-95df8112a0cbdb06addbac5fbea03b37d4440418.tar.gz |
Refill some long/short copyright headers.
Diffstat (limited to 'admin/diff-tar-files')
-rwxr-xr-x | admin/diff-tar-files | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/admin/diff-tar-files b/admin/diff-tar-files index 79a9d59e385..59ae1a6f26c 100755 --- a/admin/diff-tar-files +++ b/admin/diff-tar-files @@ -1,7 +1,6 @@ #! /bin/sh -# Copyright (C) 2001-2011 -# Free Software Foundation, Inc. +# Copyright (C) 2001-2011 Free Software Foundation, Inc. # This file is part of GNU Emacs. @@ -40,5 +39,3 @@ tar tzf $old_tar | sed -e 's,^[^/]*,,' | sort > $old_tmp tar tzf $new_tar | sed -e 's,^[^/]*,,' | sort > $new_tmp diff -u $old_tmp $new_tmp rm -f $new_tmp $old_tmp - - |