diff options
| author | Stefan Kangas | 2024-06-23 15:46:42 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2024-06-23 15:46:42 +0200 |
| commit | 93088fc13c47fbab875f9ee173c0a66d623d91c6 (patch) | |
| tree | ba38ea39ebc92f8e253b455c9c9097c306fa2c01 | |
| parent | b9ce39ba809f49fe80d5b9a6d41afe1fe144fc77 (diff) | |
| download | emacs-93088fc13c47fbab875f9ee173c0a66d623d91c6.tar.gz emacs-93088fc13c47fbab875f9ee173c0a66d623d91c6.zip | |
Allow git 1.8.2 features in .gitignore
* .gitignore: Assume git 1.8.2 or later; we already use the '**' feature
from that version since 2021.
| -rw-r--r-- | .gitignore | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore index eb76ff330b8..d6e436c2d09 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -18,11 +18,6 @@ | |||
| 18 | # along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. | 18 | # along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. |
| 19 | 19 | ||
| 20 | 20 | ||
| 21 | # Currently we assume only Git 1.7.1 (April 2010) or later, so this | ||
| 22 | # file does not rely on "**" in patterns. The "**" feature was added | ||
| 23 | # in Git 1.8.2 (March 2013). | ||
| 24 | |||
| 25 | |||
| 26 | # Personal customization. | 21 | # Personal customization. |
| 27 | .dir-locals-2.el | 22 | .dir-locals-2.el |
| 28 | .no-advice-on-failure | 23 | .no-advice-on-failure |
| @@ -119,8 +114,8 @@ cross/ndk-build/ndk-build.mk | |||
| 119 | cross/ndk-build/*.o | 114 | cross/ndk-build/*.o |
| 120 | 115 | ||
| 121 | # Lisp-level sources built by 'make'. | 116 | # Lisp-level sources built by 'make'. |
| 122 | *cus-load.el | 117 | lisp/**/*cus-load.el |
| 123 | *loaddefs.el | 118 | lisp/**/*loaddefs.el |
| 124 | lisp/cedet/semantic/bovine/c-by.el | 119 | lisp/cedet/semantic/bovine/c-by.el |
| 125 | lisp/cedet/semantic/bovine/make-by.el | 120 | lisp/cedet/semantic/bovine/make-by.el |
| 126 | lisp/cedet/semantic/bovine/scm-by.el | 121 | lisp/cedet/semantic/bovine/scm-by.el |