diff options
| author | Paul Eggert | 2012-03-01 18:29:30 -0800 |
|---|---|---|
| committer | Paul Eggert | 2012-03-01 18:29:30 -0800 |
| commit | 9d6b4d53469a9ffd67bd770fabc6fe254e35c21d (patch) | |
| tree | de238c6f707915be9ed1f10235589b4e975a08fb /lisp/ChangeLog | |
| parent | a89654f8f34114db543cb91363e8fded6d73e986 (diff) | |
| parent | eec1549a6b89359b6d970f14dead275e59b7bc6f (diff) | |
| download | emacs-9d6b4d53469a9ffd67bd770fabc6fe254e35c21d.tar.gz emacs-9d6b4d53469a9ffd67bd770fabc6fe254e35c21d.zip | |
Merge from trunk.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 136 |
1 files changed, 132 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8d3ff6c4225..08f6ac4d075 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,131 @@ | |||
| 1 | 2012-03-01 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * files.el (file-equal-p): Fix docstring. Avoid unnecessary | ||
| 4 | access of FILE2, if FILE1 does not exist. | ||
| 5 | |||
| 6 | * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"". | ||
| 7 | Reported by Robert Lupton the Good <rhl@astro.princeton.edu>. | ||
| 8 | |||
| 9 | * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'. | ||
| 10 | Add "PAGER=" to `process-environment'. | ||
| 11 | |||
| 12 | 2012-03-01 Michael R. Mauger <mmaug@yahoo.com> | ||
| 13 | |||
| 14 | * progmodes/sql.el: Bug fix | ||
| 15 | (sql-get-login-ext): Save login values in globals. | ||
| 16 | (sql-get-login): Use new version of `sql-get-login-ext'. | ||
| 17 | (sql-interactive-mode): Set global `sql-connection' to nil. | ||
| 18 | (sql-connect): Set global values for connection. | ||
| 19 | (sql-product-interactive): Save global values as buffer local. | ||
| 20 | |||
| 21 | 2012-02-29 Leo Liu <sdl.web@gmail.com> | ||
| 22 | |||
| 23 | * abbrev.el (define-abbrevs): Reset sys to nil. | ||
| 24 | |||
| 25 | 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com> | ||
| 26 | |||
| 27 | * files.el (file-equal-p): Rename from `files-equal-p'. | ||
| 28 | Return nil when one or both files don't exist. | ||
| 29 | (file-subdir-of-p): Now only top directory must exists, | ||
| 30 | return nil if it doesn't. | ||
| 31 | (copy-directory): No need to test with `file-subdir-of-p' after | ||
| 32 | creating dir. | ||
| 33 | * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p' | ||
| 34 | to `file-equal-p'. | ||
| 35 | |||
| 36 | 2012-02-28 Glenn Morris <rgm@gnu.org> | ||
| 37 | |||
| 38 | * shell.el (shell-mode): | ||
| 39 | * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards): | ||
| 40 | * play/landmark.el (landmark-font-lock-face-O): | ||
| 41 | * play/handwrite.el (handwrite): | ||
| 42 | * play/gomoku.el (gomoku-O): | ||
| 43 | * net/browse-url.el (browse-url-browser-display): | ||
| 44 | * international/mule.el (define-charset): | ||
| 45 | * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class): | ||
| 46 | * filesets.el (filesets-find-file-delay): | ||
| 47 | * eshell/em-xtra.el (eshell-xtra): | ||
| 48 | * eshell/em-unix.el (eshell-grep): | ||
| 49 | * emulation/viper.el (viper-mode): | ||
| 50 | * emacs-lisp/regexp-opt.el (regexp-opt-group): | ||
| 51 | * emacs-lisp/easymenu.el (easy-menu-define): | ||
| 52 | * calendar/timeclock.el (timeclock-use-display-time): | ||
| 53 | * bs.el (bs-mode): | ||
| 54 | * bookmark.el (bookmark-save-flag): | ||
| 55 | Doc fix (standardize possessive apostrophe usage). | ||
| 56 | |||
| 57 | 2012-02-27 Chong Yidong <cyd@gnu.org> | ||
| 58 | |||
| 59 | * emulation/viper-cmd.el (viper-intercept-ESC-key): | ||
| 60 | Fix key-binding lookup for ESC key (Bug#9146). | ||
| 61 | |||
| 62 | * font-lock.el (font-lock-specified-p): Rename from | ||
| 63 | font-lock-spec-present. Callers changed. | ||
| 64 | |||
| 65 | 2012-02-27 Daniel Hackney <dan@haxney.org> | ||
| 66 | |||
| 67 | * emacs-lisp/package.el (package-compute-transaction): | ||
| 68 | Handle holding a package version to t in package-load-list. | ||
| 69 | |||
| 70 | 2012-02-26 Michael Albinus <michael.albinus@gmx.de> | ||
| 71 | |||
| 72 | * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0. | ||
| 73 | (tramp-get-inode, tramp-get-device): Use cached values. | ||
| 74 | |||
| 75 | 2012-02-26 Alan Mackenzie <acm@muc.de> | ||
| 76 | |||
| 77 | Check there is a font-lock specification before doing initial | ||
| 78 | fontification. | ||
| 79 | |||
| 80 | * font-core.el (font-lock-mode): Move the conditional from | ||
| 81 | :after-hook to font-lock-initial-fontify. | ||
| 82 | (font-lock-default-function): Move the check for a specification | ||
| 83 | to font-lock-spec-present. | ||
| 84 | |||
| 85 | * font-lock.el (font-lock-initial-fontify): call ... | ||
| 86 | (font-lock-spec-present): New function. | ||
| 87 | |||
| 88 | 2012-02-26 Jim Blandy <jimb@red-bean.com> | ||
| 89 | |||
| 90 | * progmodes/gdb-mi.el (gdb-mi-quote): New function. | ||
| 91 | (gdb-send): Apply it to the operand of the '-interpreter-exec | ||
| 92 | console' command, so that we can pass arguments with (say) quotes | ||
| 93 | in them. Store exact string sent in gdb-debug-log (Bug#10765). | ||
| 94 | |||
| 95 | 2012-02-26 Chong Yidong <cyd@gnu.org> | ||
| 96 | |||
| 97 | * help-fns.el (describe-function-1): Clarify description of | ||
| 98 | remapping (Bug#10844). | ||
| 99 | |||
| 100 | * files.el (files-equal-p): Doc fix. | ||
| 101 | (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp, | ||
| 102 | and quit the loop once a mismatch is found. | ||
| 103 | |||
| 104 | 2012-02-25 Juanma Barranquero <lekktu@gmail.com> | ||
| 105 | |||
| 106 | * bs.el (bs--show-with-configuration): Don't throw an error | ||
| 107 | if the window cannot be split; otherwise, subsequent calls to | ||
| 108 | bs-show fail, restoring a stale window config. (Bug#10882) | ||
| 109 | |||
| 110 | 2012-02-25 Jan Djärv <jan.h.d@swipnet.se> | ||
| 111 | |||
| 112 | * term/ns-win.el (global-map): Bind ns-drag-file to | ||
| 113 | ns-find-file (Bug#5855, Bug#10050). | ||
| 114 | |||
| 115 | 2012-02-25 Andreas Schwab <schwab@linux-m68k.org> | ||
| 116 | |||
| 117 | * calendar/parse-time.el (parse-time-string): Allow extractor to | ||
| 118 | return nil. | ||
| 119 | |||
| 120 | 2012-02-25 Michael Albinus <michael.albinus@gmx.de> | ||
| 121 | |||
| 122 | * net/tramp.el (tramp-file-name-for-operation): | ||
| 123 | Add `files-equal-p' and `file-subdir-of-p'. | ||
| 124 | |||
| 125 | * net/tramp-sh.el (tramp-sh-handle-copy-directory): | ||
| 126 | * net/tramp-smb.el (tramp-smb-handle-copy-directory): | ||
| 127 | Add COPY-CONTENTS argument. | ||
| 128 | |||
| 1 | 2012-02-25 Chong Yidong <cyd@gnu.org> | 129 | 2012-02-25 Chong Yidong <cyd@gnu.org> |
| 2 | 130 | ||
| 3 | Add custom groups for VC backends, for consistency with vc-bzr. | 131 | Add custom groups for VC backends, for consistency with vc-bzr. |
| @@ -45,9 +173,9 @@ | |||
| 45 | the execution of the mode hooks. | 173 | the execution of the mode hooks. |
| 46 | 174 | ||
| 47 | * font-lock.el (font-lock-initial-fontify): New function extracted | 175 | * font-lock.el (font-lock-initial-fontify): New function extracted |
| 48 | from font-lock-mode-interal. | 176 | from font-lock-mode-internal. |
| 49 | 177 | ||
| 50 | * font-core.el (font-lock-mode): call font-lock-initial-fontify in | 178 | * font-core.el (font-lock-mode): Call font-lock-initial-fontify in |
| 51 | :after-hook. | 179 | :after-hook. |
| 52 | 180 | ||
| 53 | 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca> | 181 | 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca> |
| @@ -413,7 +541,7 @@ | |||
| 413 | * mail/emacsbug.el (report-emacs-bug-hook): Query the user first | 541 | * mail/emacsbug.el (report-emacs-bug-hook): Query the user first |
| 414 | about SMTP before checking the From header. | 542 | about SMTP before checking the From header. |
| 415 | 543 | ||
| 416 | * mail/sendmail.el (sendmail-query-user-about-smtp): Refacored out | 544 | * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out |
| 417 | into own function for reuse by emacsbug.el. | 545 | into own function for reuse by emacsbug.el. |
| 418 | 546 | ||
| 419 | 2012-02-10 Leo Liu <sdl.web@gmail.com> | 547 | 2012-02-10 Leo Liu <sdl.web@gmail.com> |
| @@ -427,7 +555,7 @@ | |||
| 427 | * emacs-lisp/package.el (package-refresh-contents) | 555 | * emacs-lisp/package.el (package-refresh-contents) |
| 428 | (package-menu-execute): | 556 | (package-menu-execute): |
| 429 | * desktop.el (desktop-create-buffer): | 557 | * desktop.el (desktop-create-buffer): |
| 430 | * font-lock.el (lisp-font-lock-keywords-2): caller changed. | 558 | * font-lock.el (lisp-font-lock-keywords-2): Caller changed. |
| 431 | 559 | ||
| 432 | 2012-02-10 Glenn Morris <rgm@gnu.org> | 560 | 2012-02-10 Glenn Morris <rgm@gnu.org> |
| 433 | 561 | ||