1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-21 06:55:39 +00:00

* .gitignore: Avoid "**", as it requires Git 1.8.2 or later.

This commit is contained in:
Paul Eggert 2014-12-01 09:16:04 -08:00
parent d83f0618d4
commit 11b65bc080
2 changed files with 8 additions and 2 deletions

9
.gitignore vendored
View File

@ -18,6 +18,11 @@
# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
# Currently we assume only Git 1.7.1 (April 2010) or later, so this
# file does not rely on "**" in patterns. The "**" feature was added
# in Git 1.8.2 (March 2013).
# Built by 'autogen.sh'.
/aclocal.m4
/configure
@ -72,10 +77,10 @@ src/buildobj.h
src/globals.h
# Lisp-level sources built by 'make'.
*cus-load.el
*loaddefs.el
leim/changed.misc
leim/changed.tit
lisp/**/*cus-load.el
lisp/**/*loaddefs.el
lisp/cedet/semantic/bovine/c-by.el
lisp/cedet/semantic/bovine/make-by.el
lisp/cedet/semantic/bovine/scm-by.el

View File

@ -1,6 +1,7 @@
2014-12-01 Paul Eggert <eggert@cs.ucla.edu>
* .gitignore: Remove redundant pattern (subsumed by _*).
Avoid "**", as it requires Git 1.8.2 or later.
2014-11-21 Paul Eggert <eggert@cs.ucla.edu>