diff options
| author | Daniel Colascione | 2014-04-07 13:54:16 -0700 |
|---|---|---|
| committer | Daniel Colascione | 2014-04-07 13:54:16 -0700 |
| commit | 7e31acf6b81fdce7258077645bc239767c484841 (patch) | |
| tree | 1f0d7b063a19b54982550797df063e0a9f87eaed /lisp/ChangeLog | |
| parent | 608a4502b9fa8f5681368657fba5d5fd0fa46817 (diff) | |
| parent | e3b838807bf9fbbbec9826de6c1e4efdf72acb78 (diff) | |
| download | emacs-7e31acf6b81fdce7258077645bc239767c484841.tar.gz emacs-7e31acf6b81fdce7258077645bc239767c484841.zip | |
Merge from emacs-24; up to 2014-04-01T20:18:12Z!eggert@cs.ucla.edu
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 151 |
1 files changed, 138 insertions, 13 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 87f3c74c9fc..e4df943c1bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,128 @@ | |||
| 1 | 2014-04-07 João Távora <joaotavora@gmail.com> | ||
| 2 | |||
| 3 | * elec-pair.el: | ||
| 4 | (electric-pair--syntax-ppss): When inside comments parse from | ||
| 5 | comment beginning. | ||
| 6 | (electric-pair--balance-info): Fix typo in comment. | ||
| 7 | (electric-pair--in-unterminated-string-p): Delete. | ||
| 8 | (electric-pair--unbalanced-strings-p): New function. | ||
| 9 | (electric-pair-string-bound-function): New var. | ||
| 10 | (electric-pair-inhibit-if-helps-balance): Decide quote pairing | ||
| 11 | according to `electric-pair--in-unterminated-string-p' | ||
| 12 | |||
| 13 | 2014-04-07 João Távora <joaotavora@gmail.com> | ||
| 14 | |||
| 15 | * elec-pair.el (electric-pair-inhibit-if-helps-balance): Inhibit | ||
| 16 | quote pairing if point-max is inside an unterminated string. | ||
| 17 | (electric-pair--looking-at-unterminated-string-p): | ||
| 18 | Delete. | ||
| 19 | (electric-pair--in-unterminated-string-p): New function. | ||
| 20 | |||
| 21 | 2014-04-07 Glenn Morris <rgm@gnu.org> | ||
| 22 | |||
| 23 | * shell.el (shell-directory-tracker): | ||
| 24 | Go back to just ignoring failures. (Bug#17159) | ||
| 25 | |||
| 26 | 2014-04-06 João Távora <joaotavora@gmail.com> | ||
| 27 | |||
| 28 | Fix `electric-pair-delete-adjacent-pairs' in modes binding | ||
| 29 | backspace. (bug#16981) | ||
| 30 | * elec-pair.el (electric-pair-backward-delete-char): Delete. | ||
| 31 | (electric-pair-backward-delete-char-untabify): Delete. | ||
| 32 | (electric-pair-mode-map): Bind backspace to a menu item filtering | ||
| 33 | a new `electric-pair-delete-pair' command. | ||
| 34 | (electric-pair-delete-pair): New command. | ||
| 35 | |||
| 36 | 2014-04-06 João Távora <joaotavora@gmail.com> | ||
| 37 | |||
| 38 | * progmodes/python.el (python-electric-pair-string-delimiter): Fix | ||
| 39 | triple-quoting electricity. (Bug#17192) | ||
| 40 | |||
| 41 | 2014-04-06 João Távora <joaotavora@gmail.com> | ||
| 42 | |||
| 43 | * elec-pair.el (electric-pair-post-self-insert-function): Don't | ||
| 44 | skip whitespace when `electric-pair-text-pairs' and | ||
| 45 | `electric-pair-pairs' were used. syntax to | ||
| 46 | electric-pair--skip-whitespace. (Bug#17183) | ||
| 47 | |||
| 48 | 2014-04-06 Eli Zaretskii <eliz@gnu.org> | ||
| 49 | |||
| 50 | * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for | ||
| 51 | "<F>". (Bug#17199) | ||
| 52 | |||
| 53 | 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 54 | |||
| 55 | * mpc.el (mpc--status-timer-run): Disable timer if not displayed. | ||
| 56 | (mpc--status-idle-timer-run): Use mpc--status-timer-run. | ||
| 57 | |||
| 58 | 2014-04-05 Glenn Morris <rgm@gnu.org> | ||
| 59 | |||
| 60 | * help.el (view-lossage): Doc tweak. | ||
| 61 | |||
| 62 | 2014-04-05 Matthias Dahl <ml_emacs-lists@binary-island.eu> | ||
| 63 | |||
| 64 | * faces.el (face-spec-recalc): Call make-face-x-resource-internal | ||
| 65 | only when inhibit-x-resources is nil, and do that earlier in the | ||
| 66 | function. Doc fix. (Bug#16694) | ||
| 67 | (face-spec-choose): Accept additional optional argument, whose | ||
| 68 | value is returned if no matching attributes are found. | ||
| 69 | (face-spec-recalc): Use the new optional argument when calling | ||
| 70 | face-spec-choose. (Bug#16378) | ||
| 71 | (make-face-x-resource-internal): Do nothing when | ||
| 72 | inhibit-x-resources is non-nil. Don't touch the default face if | ||
| 73 | reversed video is given--as was done in previous versions of Emacs. | ||
| 74 | (face-set-after-frame-default): Don't call | ||
| 75 | make-face-x-resource-internal here. (Bug#16434) | ||
| 76 | |||
| 77 | 2014-04-04 Tassilo Horn <tsdh@gnu.org> | ||
| 78 | |||
| 79 | * doc-view.el (doc-view-bookmark-jump): | ||
| 80 | Use `bookmark-after-jump-hook' to jump to the right page after the | ||
| 81 | buffer is shown in a window. (bug#16090) | ||
| 82 | |||
| 83 | 2014-04-04 Eli Zaretskii <eliz@gnu.org> | ||
| 84 | |||
| 85 | * international/characters.el (mirroring): Fix last change: | ||
| 86 | instead of loading uni-mirrored.el explicitly, do that implicitly | ||
| 87 | by creating the 'mirroring' uniprop table. This avoids announcing | ||
| 88 | the loading of uni-mirrored.el. | ||
| 89 | |||
| 90 | 2014-04-04 Glenn Morris <rgm@gnu.org> | ||
| 91 | |||
| 92 | * files.el (buffer-stale--default-function) | ||
| 93 | (buffer-stale-function, revert-buffer--default): | ||
| 94 | * autorevert.el (auto-revert-buffers): Doc tweaks. | ||
| 95 | |||
| 96 | 2014-04-03 Eli Zaretskii <eliz@gnu.org> | ||
| 97 | |||
| 98 | * international/characters.el: Preload uni-mirrored.el. (Bug#17169) | ||
| 99 | |||
| 100 | 2014-04-03 Glenn Morris <rgm@gnu.org> | ||
| 101 | |||
| 102 | * files.el (make-backup-file-name-function) | ||
| 103 | (make-backup-file-name, make-backup-file-name--default-function) | ||
| 104 | (make-backup-file-name-1, find-backup-file-name) | ||
| 105 | (revert-buffer-function, revert-buffer-insert-file-contents-function) | ||
| 106 | (buffer-stale--default-function, buffer-stale-function) | ||
| 107 | (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p) | ||
| 108 | (revert-buffer, revert-buffer--default) | ||
| 109 | (revert-buffer-insert-file-contents--default-function): | ||
| 110 | Doc fixes related to defaults no longer being nil. | ||
| 111 | (make-backup-file-name-function): Bump :version. | ||
| 112 | Restore nil as a valid but deprecated custom type. | ||
| 113 | |||
| 114 | 2014-04-03 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 115 | |||
| 116 | * progmodes/perl-mode.el (perl-syntax-propertize-function): Handle $' | ||
| 117 | used as a variable (bug#17174). | ||
| 118 | |||
| 119 | 2014-04-02 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 120 | |||
| 121 | * progmodes/perl-mode.el (perl-indent-new-calculate): | ||
| 122 | Handle forward-sexp failure (bug#16985). | ||
| 123 | (perl-syntax-propertize-function): Add "foreach" and "for" statement | ||
| 124 | modifiers introducing expressions (bug#17116). | ||
| 125 | |||
| 1 | 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca> | 126 | 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 127 | ||
| 3 | * dired-aux.el (dired-file-set-difference): Use lexical-scoping. | 128 | * dired-aux.el (dired-file-set-difference): Use lexical-scoping. |
| @@ -488,6 +613,19 @@ | |||
| 488 | (tty-color-approximate, tty-color-by-index, tty-color-values) | 613 | (tty-color-approximate, tty-color-by-index, tty-color-values) |
| 489 | (tty-color-desc): Remove superfluous backslashes. | 614 | (tty-color-desc): Remove superfluous backslashes. |
| 490 | 615 | ||
| 616 | 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 617 | |||
| 618 | * electric.el (electric-newline-and-maybe-indent): New command. | ||
| 619 | Bind it globally to C-j. | ||
| 620 | (electric-indent-mode): Don't mess with the global map any more. | ||
| 621 | Don't drop the post-self-insert-hook is some buffer is still using it | ||
| 622 | (bug#16770). | ||
| 623 | |||
| 624 | * bindings.el (global-map): Remove C-j binding. | ||
| 625 | |||
| 626 | * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find | ||
| 627 | the docstring of functions advised before dumping (bug#16993). | ||
| 628 | |||
| 491 | 2014-03-21 Glenn Morris <rgm@gnu.org> | 629 | 2014-03-21 Glenn Morris <rgm@gnu.org> |
| 492 | 630 | ||
| 493 | * cus-start.el (history-length): Bump :version. | 631 | * cus-start.el (history-length): Bump :version. |
| @@ -516,18 +654,6 @@ | |||
| 516 | 654 | ||
| 517 | * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix. | 655 | * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix. |
| 518 | 656 | ||
| 519 | 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 520 | |||
| 521 | * electric.el (electric-newline-and-maybe-indent): New command. | ||
| 522 | Bind it globally to C-j. | ||
| 523 | (electric-indent-mode): Don't mess with the global map any more. | ||
| 524 | Don't drop the post-self-insert-hook is some buffer is still using it | ||
| 525 | (bug#16770). | ||
| 526 | * bindings.el (global-map): Remove C-j binding. | ||
| 527 | |||
| 528 | * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find | ||
| 529 | the docstring of functions advised before dumping (bug#16993). | ||
| 530 | |||
| 531 | 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change) | 657 | 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change) |
| 532 | 658 | ||
| 533 | * ps-print.el (ps-generate-postscript-with-faces): | 659 | * ps-print.el (ps-generate-postscript-with-faces): |
| @@ -2154,7 +2280,6 @@ | |||
| 2154 | * net/shr.el (shr-tag-img): Prefer the title over the alt text | 2280 | * net/shr.el (shr-tag-img): Prefer the title over the alt text |
| 2155 | (bug#16537). | 2281 | (bug#16537). |
| 2156 | 2282 | ||
| 2157 | >>>>>>> MERGE-SOURCE | ||
| 2158 | 2014-01-24 Juanma Barranquero <lekktu@gmail.com> | 2283 | 2014-01-24 Juanma Barranquero <lekktu@gmail.com> |
| 2159 | 2284 | ||
| 2160 | * net/eww.el (eww-download-callback): | 2285 | * net/eww.el (eww-download-callback): |