diff options
| author | Glenn Morris | 2014-10-20 20:59:41 +0100 |
|---|---|---|
| committer | Glenn Morris | 2014-10-20 20:59:41 +0100 |
| commit | 8a85c254de2528be0f3ff154fa24df65e6557c1a (patch) | |
| tree | dfc704abfcaf816f3be832097805523536347a43 /lisp | |
| parent | 9d9bcb5020987f07dd2b9ab994f8826c07182829 (diff) | |
| parent | d20b72d9fa987ea9a511c6bed909c09929dc78f8 (diff) | |
| download | emacs-8a85c254de2528be0f3ff154fa24df65e6557c1a.tar.gz emacs-8a85c254de2528be0f3ff154fa24df65e6557c1a.zip | |
Merge from emacs-24; up to 2014-07-28T06:28:15Z!dmantipov@yandex.ru
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/cedet/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 11 | ||||
| -rw-r--r-- | lisp/erc/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/mh-e/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/org/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/url/ChangeLog | 4 |
8 files changed, 39 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2336366cd45..66164fbc7ee 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg | ||
| 4 | case (bug#18767). | ||
| 5 | |||
| 6 | 2014-10-20 Glenn Morris <rgm@gnu.org> | ||
| 7 | |||
| 8 | * Merge in all changes up to 24.4 release. | ||
| 9 | |||
| 1 | 2014-10-20 Ulf Jasper <ulf.jasper@web.de> | 10 | 2014-10-20 Ulf Jasper <ulf.jasper@web.de> |
| 2 | 11 | ||
| 3 | * net/newst-backend.el | 12 | * net/newst-backend.el |
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog index 2fdd1cefdcb..1c2311e2704 100644 --- a/lisp/cedet/ChangeLog +++ b/lisp/cedet/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Merge in all changes up to 24.4 release. | ||
| 4 | |||
| 1 | 2014-10-15 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2014-10-15 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * semantic/wisent/comp.el (wisent-defcontext): Move declarations | 7 | * semantic/wisent/comp.el (wisent-defcontext): Move declarations |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 0e96ba93f44..264539e03a7 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -3285,11 +3285,11 @@ If it is nil, then the handler is \"byte-compile-SYMBOL.\"" | |||
| 3285 | (byte-defop-compiler cons 2) | 3285 | (byte-defop-compiler cons 2) |
| 3286 | (byte-defop-compiler aref 2) | 3286 | (byte-defop-compiler aref 2) |
| 3287 | (byte-defop-compiler set 2) | 3287 | (byte-defop-compiler set 2) |
| 3288 | (byte-defop-compiler (= byte-eqlsign) 2-and) | 3288 | (byte-defop-compiler (= byte-eqlsign) 2) ;; -and bug#18767 |
| 3289 | (byte-defop-compiler (< byte-lss) 2-and) | 3289 | (byte-defop-compiler (< byte-lss) 2) ;; -and bug#18767 |
| 3290 | (byte-defop-compiler (> byte-gtr) 2-and) | 3290 | (byte-defop-compiler (> byte-gtr) 2) ;; -and bug#18767 |
| 3291 | (byte-defop-compiler (<= byte-leq) 2-and) | 3291 | (byte-defop-compiler (<= byte-leq) 2) ;; -and bug#18767 |
| 3292 | (byte-defop-compiler (>= byte-geq) 2-and) | 3292 | (byte-defop-compiler (>= byte-geq) 2) ;; -and bug#18767 |
| 3293 | (byte-defop-compiler get 2) | 3293 | (byte-defop-compiler get 2) |
| 3294 | (byte-defop-compiler nth 2) | 3294 | (byte-defop-compiler nth 2) |
| 3295 | (byte-defop-compiler substring 2-3) | 3295 | (byte-defop-compiler substring 2-3) |
| @@ -3356,6 +3356,7 @@ If it is nil, then the handler is \"byte-compile-SYMBOL.\"" | |||
| 3356 | (defun byte-compile-and-folded (form) | 3356 | (defun byte-compile-and-folded (form) |
| 3357 | "Compile calls to functions like `<='. | 3357 | "Compile calls to functions like `<='. |
| 3358 | These implicitly `and' together a bunch of two-arg bytecodes." | 3358 | These implicitly `and' together a bunch of two-arg bytecodes." |
| 3359 | ;; FIXME: bug#18767 means we can't do it this way! | ||
| 3359 | (let ((l (length form))) | 3360 | (let ((l (length form))) |
| 3360 | (cond | 3361 | (cond |
| 3361 | ((< l 3) (byte-compile-form `(progn ,(nth 1 form) t))) | 3362 | ((< l 3) (byte-compile-form `(progn ,(nth 1 form) t))) |
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index c12f289ce0f..efa3219db07 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Merge in all changes up to 24.4 release. | ||
| 4 | |||
| 1 | 2014-10-15 Ivan Shmakov <ivan@siamics.net> | 5 | 2014-10-15 Ivan Shmakov <ivan@siamics.net> |
| 2 | 6 | ||
| 3 | * erc-track.el (erc-modified-channels-display): Update mode line | 7 | * erc-track.el (erc-modified-channels-display): Update mode line |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 00c96b7d963..5e37dff0eab 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Merge in all changes up to 24.4 release. | ||
| 4 | |||
| 1 | 2014-10-15 Jorge A. Alfaro-Murillo <jorge.alfaro-murillo@yale.edu> (tiny change) | 5 | 2014-10-15 Jorge A. Alfaro-Murillo <jorge.alfaro-murillo@yale.edu> (tiny change) |
| 2 | 6 | ||
| 3 | * message.el (message-insert-signature): Use `newline' instead of | 7 | * message.el (message-insert-signature): Use `newline' instead of |
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 8008f07c700..0e8665c6c0d 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Merge in all changes up to 24.4 release. | ||
| 4 | |||
| 1 | 2014-09-30 Bill Wohler <wohler@newt.com> | 5 | 2014-09-30 Bill Wohler <wohler@newt.com> |
| 2 | 6 | ||
| 3 | Release MH-E version 8.6. | 7 | Release MH-E version 8.6. |
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 3910a71db3f..1d71497600e 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Merge in all changes up to 24.4 release. | ||
| 4 | |||
| 1 | 2014-10-12 Marco Wahl <marcowahlsoft@gmail.com> | 5 | 2014-10-12 Marco Wahl <marcowahlsoft@gmail.com> |
| 2 | 6 | ||
| 3 | * org-agenda.el (org-get-entries-from-diary): Use | 7 | * org-agenda.el (org-get-entries-from-diary): Use |
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 21a779f85b3..f725ba66359 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Merge in all changes up to 24.4 release. | ||
| 4 | |||
| 1 | 2014-10-07 Eli Zaretskii <eliz@gnu.org> | 5 | 2014-10-07 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * url-http.el (url-http-create-request): Recheck zlib availability | 7 | * url-http.el (url-http-create-request): Recheck zlib availability |