diff options
| author | Ted Zlatanov | 2014-12-12 19:15:10 -0500 |
|---|---|---|
| committer | Ted Zlatanov | 2014-12-12 19:23:19 -0500 |
| commit | 28e0d0c95d8e17e18e94744e99ccd68c8c911703 (patch) | |
| tree | a45021bd7042b2008cf6084bd4019777b7575492 /ChangeLog | |
| parent | b81a1837916a7f3f7abd953338302fa237a532f2 (diff) | |
| download | emacs-28e0d0c95d8e17e18e94744e99ccd68c8c911703.tar.gz emacs-28e0d0c95d8e17e18e94744e99ccd68c8c911703.zip | |
Merge from origin/emacs-24
bd6c441 * simple.el (password-word-equivalents): Add "passcode", used for numeric secrets like PINs or RSA tokens.
16d4c1c A better fix for bug#19346
82ec808 * .gitignore: Add !lib/std*.in.h, so as to not ignore the .in.h files.
3cf7629 Git ignore lib/std*.h
301a401 Always define `gnutls-available-p' even if GnuTLS is not available.
d76b9b2 Don't break example string between 2 lines (bug#19257)
75b4857 Port commit-msg to mawk
9ac0332 Improve commit-msg messages and autosquash
0c2f254 Support overflow-newline-into-fringe together with word-wrap (bug#19300)
935ee05 * net/tramp-sh.el (tramp-get-remote-path): Use a login shell in order to determine `tramp-own-remote-path'.
c2db939 python.el: Support interpreter paths with spaces
d83f329 ChangeLog fix
0f9fbb9 Port commit-message checking to FreeBSD 9.
3db1ada admin/MAINTAINERS: Update my interests and responsibilities.
6382f24 * .gitignore: Ignore autosave files.
Conflicts:
ChangeLog
lisp/progmodes/python.el
src/gnutls.c
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 62 |
1 files changed, 62 insertions, 0 deletions
| @@ -1,3 +1,65 @@ | |||
| 1 | 2014-11-13 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * .gitignore: Copy over sufficient ignorable files from the old | ||
| 4 | .bzrignore that a simple build doesn't list lots of unregistered | ||
| 5 | files. | ||
| 6 | |||
| 7 | 2014-11-11 Eric S. Raymond <esr@thyrsus.com> | ||
| 8 | |||
| 9 | * Makefile.in: git transition - set VCWITNESS appropriately for git. | ||
| 10 | |||
| 11 | All bzr revision IDS, and all CVS revision IDs for which a commit | ||
| 12 | could be identified, were changed to time-date!committer version | ||
| 13 | stamps. All .cvsignore files in the history became .gitignore | ||
| 14 | files. Fixes-bug annotations from bzr were copied into the | ||
| 15 | corresponding commit comments. | ||
| 16 | |||
| 17 | (The first .cvsignore commit was 1999-09-30T14:07:54Z!fx@gnu.org. | ||
| 18 | The last CVS commit was 2009-12-27T08:11:12Z!cyd@stupidchicken.com.) | ||
| 19 | |||
| 20 | Committer/author email addresses are generally correct for the | ||
| 21 | transition day, not necessarily when the comit was originally | ||
| 22 | made. | ||
| 23 | |||
| 24 | 2014-12-12 Paul Eggert <eggert@cs.ucla.edu> | ||
| 25 | |||
| 26 | Git ignore lib/std*.h | ||
| 27 | * .gitignore: Add lib/std*.h, to ignore stdarg.h, stdbool.h, and | ||
| 28 | stddef.h. Remove subsumed entries. | ||
| 29 | Add !lib/std*.in.h, so as to not ignore the .in.h files. | ||
| 30 | |||
| 31 | 2014-12-11 Paul Eggert <eggert@cs.ucla.edu> | ||
| 32 | |||
| 33 | Port commit-msg to mawk | ||
| 34 | Problem reported by Ted Zlatanov in: | ||
| 35 | http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg01093.html | ||
| 36 | * build-aux/git-hooks/commit-msg (space, non_space, non_print): | ||
| 37 | New vars. Use them as approximations to POSIX bracket expressions, | ||
| 38 | on implementations like mawk that do not support POSIX regexps. | ||
| 39 | |||
| 40 | Improve commit-msg messages and autosquash | ||
| 41 | Problem reported by Michal Nazarewicz in Bug#19337. | ||
| 42 | * build-aux/git-hooks/commit-msg: Add "commit message" to | ||
| 43 | diagnostics. Distinguish better between tabs and other | ||
| 44 | unprintable chars in diagnostics. Don't complain if a prefix | ||
| 45 | "fixup! " or "squash! " makes a summary line too long. | ||
| 46 | |||
| 47 | 2014-12-08 Paul Eggert <eggert@cs.ucla.edu> | ||
| 48 | |||
| 49 | Port commit-message checking to FreeBSD 9. | ||
| 50 | This fixes a bug reported by Jan Djärv in: | ||
| 51 | http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00704.html | ||
| 52 | along with some other issues I noticed while testing with FreeBSD. | ||
| 53 | * build-aux/git-hooks/commit-msg: Prefer gawk if available. | ||
| 54 | Prefer en_US.UTF-8 to en_US.utf8, as it's more portable. | ||
| 55 | Work around bug in FreeBSD 9 awk, where /[[:cntrl:]]/ matches | ||
| 56 | ordinary text characters. | ||
| 57 | Be less tricky about quoting "'" in a shell script. | ||
| 58 | |||
| 59 | 2014-12-05 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 60 | |||
| 61 | * .gitignore: Ignore autosave files. | ||
| 62 | |||
| 1 | 2014-12-12 Paul Eggert <eggert@cs.ucla.edu> | 63 | 2014-12-12 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 64 | ||
| 3 | Merge from gnulib | 65 | Merge from gnulib |