diff options
| author | Paul Eggert | 2014-11-16 17:19:05 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-11-16 17:32:01 -0800 |
| commit | 790c69057269dbed855375b91120ccf3cce0f830 (patch) | |
| tree | 04200884299e942530a5f076cd7eb66a6e8c0896 | |
| parent | cf100f60a6fbed0446dbc091649df4f17e4f5694 (diff) | |
| download | emacs-790c69057269dbed855375b91120ccf3cce0f830.tar.gz emacs-790c69057269dbed855375b91120ccf3cce0f830.zip | |
Simplify and fix doc-related .gitignore files.
This fixes some unwanted 'git status' output after 'make docs'.
* .gitignore: Add **/Makefile, **/makefile.
Remove Makefile, makefile.
Add doc/*/*.xxx rules for the usual kinds of documentation outputs
and temporaries. Add doc/misc/cc-mode.ss.
* doc/emacs/.gitignore, doc/lispref/.gitignore, doc/misc/.gitignore:
* lwlib/.gitignore, oldXMenu/.gitignore:
Remove, as these .gitignore files are no longer needed.
* doc/lispintro/.gitignore: Replace with list of exceptional PDF files.
| -rw-r--r-- | .gitignore | 42 | ||||
| -rw-r--r-- | ChangeLog | 13 | ||||
| -rw-r--r-- | doc/emacs/.gitignore | 23 | ||||
| -rw-r--r-- | doc/lispintro/.gitignore | 24 | ||||
| -rw-r--r-- | doc/lispref/.gitignore | 13 | ||||
| -rw-r--r-- | doc/misc/.gitignore | 23 | ||||
| -rw-r--r-- | lwlib/.gitignore | 1 | ||||
| -rw-r--r-- | oldXMenu/.gitignore | 1 |
8 files changed, 52 insertions, 88 deletions
diff --git a/.gitignore b/.gitignore index 6903c46278e..7f6aca7e0b0 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -1,3 +1,6 @@ | |||
| 1 | **/Makefile | ||
| 2 | **/makefile | ||
| 3 | |||
| 1 | configure | 4 | configure |
| 2 | aclocal.m4 | 5 | aclocal.m4 |
| 3 | compile | 6 | compile |
| @@ -9,10 +12,9 @@ missing | |||
| 9 | lib/Makefile.in | 12 | lib/Makefile.in |
| 10 | src/config.in | 13 | src/config.in |
| 11 | autom4te.cache | 14 | autom4te.cache |
| 12 | makefile | ||
| 13 | TAGS | 15 | TAGS |
| 14 | *~ | 16 | *~ |
| 15 | .#* | 17 | .#* |
| 16 | /README.W32 | 18 | /README.W32 |
| 17 | 19 | ||
| 18 | /bin/ | 20 | /bin/ |
| @@ -24,7 +26,6 @@ info/dir | |||
| 24 | info/*.info | 26 | info/*.info |
| 25 | test/biditest.txt | 27 | test/biditest.txt |
| 26 | 28 | ||
| 27 | Makefile | ||
| 28 | config.log | 29 | config.log |
| 29 | config.status | 30 | config.status |
| 30 | config.cache | 31 | config.cache |
| @@ -72,9 +73,38 @@ src/stamp-h1 | |||
| 72 | src/temacs | 73 | src/temacs |
| 73 | src/temacs.map | 74 | src/temacs.map |
| 74 | src/temacs.tmp | 75 | src/temacs.tmp |
| 75 | doc/emacs/emacsver.texi | 76 | doc/*/*.aux |
| 76 | doc/man/emacs.1 | 77 | doc/*/*.cm |
| 77 | etc/refcards/emacsver.tex | 78 | doc/*/*.cms |
| 79 | doc/*/*.cp | ||
| 80 | doc/*/*.cps | ||
| 81 | doc/*/*.dvi | ||
| 82 | doc/*/*.fn | ||
| 83 | doc/*/*.fns | ||
| 84 | doc/*/*.html | ||
| 85 | doc/*/*.ky | ||
| 86 | doc/*/*.kys | ||
| 87 | doc/*/*.log | ||
| 88 | doc/*/*.op | ||
| 89 | doc/*/*.ops | ||
| 90 | doc/*/*.pdf | ||
| 91 | doc/*/*.pg | ||
| 92 | doc/*/*.pgs | ||
| 93 | doc/*/*.pj | ||
| 94 | doc/*/*.pjs | ||
| 95 | doc/*/*.ps | ||
| 96 | doc/*/*.sc | ||
| 97 | doc/*/*.scs | ||
| 98 | doc/*/*.tg | ||
| 99 | doc/*/*.tgs | ||
| 100 | doc/*/*.tmp | ||
| 101 | doc/*/*.toc | ||
| 102 | doc/*/*.tp | ||
| 103 | doc/*/*.tps | ||
| 104 | doc/*/*.vr | ||
| 105 | doc/*/*.vrs | ||
| 106 | doc/*/texput.log | ||
| 107 | doc/misc/cc-mode.ss | ||
| 78 | lib/.deps/ | 108 | lib/.deps/ |
| 79 | lisp/international/uni-brackets.el | 109 | lisp/international/uni-brackets.el |
| 80 | lwlib/deps/ | 110 | lwlib/deps/ |
| @@ -1,3 +1,16 @@ | |||
| 1 | 2014-11-17 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Simplify and fix doc-related .gitignore files. | ||
| 4 | This fixes some unwanted 'git status' output after 'make docs'. | ||
| 5 | * .gitignore: Add **/Makefile, **/makefile. | ||
| 6 | Remove Makefile, makefile. | ||
| 7 | Add doc/*/*.xxx rules for the usual kinds of documentation outputs | ||
| 8 | and temporaries. Add doc/misc/cc-mode.ss. | ||
| 9 | * doc/emacs/.gitignore, doc/lispintro/.gitignore, doc/misc/.gitignore: | ||
| 10 | * lwlib/.gitignore, oldXMenu/.gitignore: | ||
| 11 | Remove, as these .gitignore files are no longer needed. | ||
| 12 | * doc/lispintro/.gitignore: Replace with list of exceptional PDF files. | ||
| 13 | |||
| 1 | 2014-11-15 Christoph Scholtes <cschol2112@gmail.com> | 14 | 2014-11-15 Christoph Scholtes <cschol2112@gmail.com> |
| 2 | 15 | ||
| 3 | * .gitignore: Ignore generated file lib/stdalign.h. | 16 | * .gitignore: Ignore generated file lib/stdalign.h. |
diff --git a/doc/emacs/.gitignore b/doc/emacs/.gitignore deleted file mode 100644 index 3ff56b474dd..00000000000 --- a/doc/emacs/.gitignore +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | *.aux | ||
| 2 | *.cp | ||
| 3 | *.cps | ||
| 4 | *.dvi | ||
| 5 | *.fn | ||
| 6 | *.fns | ||
| 7 | *.ky | ||
| 8 | *.kys | ||
| 9 | *.log | ||
| 10 | *.op | ||
| 11 | *.ops | ||
| 12 | |||
| 13 | *.pg | ||
| 14 | *.pgs | ||
| 15 | *.ps | ||
| 16 | *.tmp | ||
| 17 | *.toc | ||
| 18 | *.tp | ||
| 19 | *.tps | ||
| 20 | *.vr | ||
| 21 | *.vrs | ||
| 22 | Makefile | ||
| 23 | makefile | ||
diff --git a/doc/lispintro/.gitignore b/doc/lispintro/.gitignore index e1af5a918b0..cf992dc8649 100644 --- a/doc/lispintro/.gitignore +++ b/doc/lispintro/.gitignore | |||
| @@ -1,21 +1,3 @@ | |||
| 1 | *.aux | 1 | !cons-*.pdf |
| 2 | *.fn | 2 | !drawers.pdf |
| 3 | *.fns | 3 | !lambda-*.pdf |
| 4 | *.cps | ||
| 5 | *.cp | ||
| 6 | *.kys | ||
| 7 | *.ky | ||
| 8 | *.toc | ||
| 9 | *.pgs | ||
| 10 | *.pg | ||
| 11 | *.log | ||
| 12 | *.vrs | ||
| 13 | *.vr | ||
| 14 | *.dvi | ||
| 15 | *.ps | ||
| 16 | *.tp | ||
| 17 | *.tps | ||
| 18 | *.tmp | ||
| 19 | *.txt | ||
| 20 | Makefile | ||
| 21 | makefile | ||
diff --git a/doc/lispref/.gitignore b/doc/lispref/.gitignore deleted file mode 100644 index ba74d365995..00000000000 --- a/doc/lispref/.gitignore +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | texput.log | ||
| 2 | elisp.?? | ||
| 3 | elisp.??? | ||
| 4 | config.log | ||
| 5 | config.cache | ||
| 6 | config.status | ||
| 7 | Makefile | ||
| 8 | makefile | ||
| 9 | elisp | ||
| 10 | elisp-? | ||
| 11 | elisp-?? | ||
| 12 | elisp1* | ||
| 13 | elisp2* | ||
diff --git a/doc/misc/.gitignore b/doc/misc/.gitignore deleted file mode 100644 index 3ff56b474dd..00000000000 --- a/doc/misc/.gitignore +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | *.aux | ||
| 2 | *.cp | ||
| 3 | *.cps | ||
| 4 | *.dvi | ||
| 5 | *.fn | ||
| 6 | *.fns | ||
| 7 | *.ky | ||
| 8 | *.kys | ||
| 9 | *.log | ||
| 10 | *.op | ||
| 11 | *.ops | ||
| 12 | |||
| 13 | *.pg | ||
| 14 | *.pgs | ||
| 15 | *.ps | ||
| 16 | *.tmp | ||
| 17 | *.toc | ||
| 18 | *.tp | ||
| 19 | *.tps | ||
| 20 | *.vr | ||
| 21 | *.vrs | ||
| 22 | Makefile | ||
| 23 | makefile | ||
diff --git a/lwlib/.gitignore b/lwlib/.gitignore deleted file mode 100644 index f3c7a7c5da6..00000000000 --- a/lwlib/.gitignore +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | Makefile | ||
diff --git a/oldXMenu/.gitignore b/oldXMenu/.gitignore deleted file mode 100644 index f3c7a7c5da6..00000000000 --- a/oldXMenu/.gitignore +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | Makefile | ||