aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog.trunk
diff options
context:
space:
mode:
authorStefan Monnier2011-03-31 00:24:03 -0400
committerStefan Monnier2011-03-31 00:24:03 -0400
commit40d83b412f584cc02e68d4eac8fd5e6eb769e2fe (patch)
treeb56f27a7e6d75a8c1fd27b00179a27b5efea0a32 /lisp/ChangeLog.trunk
parentf488fb6528738131ef41859e1f04125f2e50efce (diff)
parent44f230aa043ebb222aa0876b44d70484d5dd38db (diff)
downloademacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.tar.gz
emacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.zip
Merge from trunk
Diffstat (limited to 'lisp/ChangeLog.trunk')
-rw-r--r--lisp/ChangeLog.trunk171
1 files changed, 161 insertions, 10 deletions
diff --git a/lisp/ChangeLog.trunk b/lisp/ChangeLog.trunk
index d087982edee..7ce8b62b333 100644
--- a/lisp/ChangeLog.trunk
+++ b/lisp/ChangeLog.trunk
@@ -1,3 +1,154 @@
12011-03-30 Leo Liu <sdl.web@gmail.com>
2
3 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
4 New commands.
5 (edit-abbrevs-map): Bind them here.
6 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
7
82011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
9
10 * allout.el (allout-hide-by-annotation, allout-flag-region):
11 Reduce possibility of overlay leakage by making them volatile.
12
13 * allout-widgets.el (allout-widgets-tally): Define as nil so the
14 hash is not shared between buffers. Mode initialization is
15 responsible for giving it a useful starting value.
16 (allout-item-span): Reduce possibility of overlay leakage by
17 making them volatile.
18 (allout-widgets-count-buttons-in-region): Add diagnostic function
19 for tracking down button overlay leaks.
20
212011-03-29 Leo Liu <sdl.web@gmail.com>
22
23 * ido.el (ido-read-internal): Use the default history var
24 minibuffer-history if no HISTORY is specified.
25
262011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
27
28 * net/imap.el (imap-shell-open, imap-process-connection-type): Use
29 imap-process-connection-type for 'shell' streams as well as
30 Kerberos, SSL, other subprocesses.
31
322011-03-28 Leo Liu <sdl.web@gmail.com>
33
34 * abbrev.el (abbrev-table-empty-p): New function.
35 (prepare-abbrev-list-buffer): Place empty abbrev tables after
36 nonempty ones. (Bug#5937)
37
382011-03-27 Jan Djärv <jan.h.d@swipnet.se>
39
40 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
41
422011-03-27 Leo Liu <sdl.web@gmail.com>
43
44 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
45 for foreground and background colors.
46 (ansi-color-make-color-map): Adapt.
47
482011-03-25 Leo Liu <sdl.web@gmail.com>
49
50 * midnight.el (midnight-time-float): Remove. Note it calculates
51 the microsecond component incorrectly and seconds-to-time does the
52 same job.
53 Remove redundant (require 'timer).
54
55 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
56 (ido-completions): Remove unused arguments. (Bug#8329)
57
582011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
59
60 * minibuffer.el (completion--flush-all-sorted-completions):
61 Remove itself from hook.
62 (completion-at-point): Let the functions perform the completion
63 immediately and return nil or t.
64 * comint.el (comint-dynamic-complete-functions): Now identical to
65 completion-at-point-functions.
66 (comint-dynamic-list-input-ring): Remove unused var `index'.
67 (comint--match-partial-filename, comint--unquote&expand-filename):
68 New funs, split from comint-match-partial-filename.
69 (comint-dynamic-complete): Use completion-at-point.
70 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
71
722011-03-24 Drew Adams <drew.adams@oracle.com>
73
74 * thingatpt.el: Support `defun'.
75
762011-03-23 Leo Liu <sdl.web@gmail.com>
77
78 * abbrevlist.el: Move to obsolete/abbrevlist.el.
79
80 * help-mode.el (help-mode-finish): Tweak regexp.
81
822011-03-23 Glenn Morris <rgm@gnu.org>
83
84 * eshell/esh-opt.el (eshell-eval-using-options):
85 Do not bind unused local variable `eshell-option-stub'.
86
87 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
88
892011-03-22 Juanma Barranquero <lekktu@gmail.com>
90
91 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
92 keymap variable in `with-no-warnings' to avoid a warning when the
93 keymap has been already `defconst'ed.
94
952011-03-22 Leo Liu <sdl.web@gmail.com>
96
97 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
98 encode all chars in abbrevs; otherwise use emacs-mule or
99 utf-8-emacs. (Bug#8308)
100
1012011-03-22 Juanma Barranquero <lekktu@gmail.com>
102
103 * simple.el (backward-delete-char-untabify):
104 Avoid warning about using `delete-backward-char'.
105
106 * image.el (image-type-file-name-regexps): Make it variable.
107 `imagemagick-register-types' modifies it, and the user may want
108 to add new extensions for known image types.
109 (imagemagick-register-types): Throw error if not using ImageMagick.
110
1112011-03-22 Leo Liu <sdl.web@gmail.com>
112
113 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
114 located before rcirc-prompt-end-marker.
115 (rcirc-complete): Error if point is not after rcirc prompt.
116 Handle the case when table is nil.
117 (rcirc-user-authenticated): Define to fix compiler warning.
118
1192011-03-22 Chong Yidong <cyd@stupidchicken.com>
120
121 * custom.el (custom--inhibit-theme-enable): Make it affect only
122 custom-theme-set-variables and custom-theme-set-faces.
123 (provide-theme): Ignore custom--inhibit-theme-enable.
124 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
125 (custom-enabling-themes): Delete variable.
126 (enable-theme): Accept only loaded themes as arguments.
127 Ignore the special custom-enabled-themes variable.
128 (custom-enabled-themes): Forbid themes from setting this.
129 Eliminate use of custom-enabling-themes.
130 (custom-push-theme): Quote "changed" custom var entry.
131
1322011-03-21 Leo Liu <sdl.web@gmail.com>
133
134 * ido.el (ido-read-internal): Add ido-selected to history instead
135 of user input.
136
1372011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
138
139 * subr.el (deferred-action-list, deferred-action-function):
140 Mark obsolete.
141
1422011-03-21 Leo Liu <sdl.web@gmail.com>
143
144 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
145 change on 2011-02-13 (bug#8309).
146
147 * minibuffer.el (read-file-name-function): Change default value.
148 (read-file-name--defaults): Rename from read-file-name-defaults.
149 (read-file-name-default): Rename from read-file-name.
150 (read-file-name): Call read-file-name-function.
151
12011-03-21 Glenn Morris <rgm@gnu.org> 1522011-03-21 Glenn Morris <rgm@gnu.org>
2 153
3 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args): 154 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
@@ -310,8 +461,8 @@
310 461
3112011-03-09 Michael Albinus <michael.albinus@gmx.de> 4622011-03-09 Michael Albinus <michael.albinus@gmx.de>
312 463
313 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band): Do 464 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
314 not use `tramp-file-name-port', because this returns also 465 Do not use `tramp-file-name-port', because this returns also
315 `tramp-default-port'. 466 `tramp-default-port'.
316 467
3172011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com> 4682011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
@@ -340,8 +491,8 @@
340 * emacs-lisp/package.el (package-tar-file-info): Handle also 491 * emacs-lisp/package.el (package-tar-file-info): Handle also
341 remote files. 492 remote files.
342 493
343 * emacs-lisp/package-x.el (package-upload-buffer-internal): Use 494 * emacs-lisp/package-x.el (package-upload-buffer-internal):
344 `equal' for upload base check. 495 Use `equal' for upload base check.
345 496
3462011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change) 4972011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
347 498
@@ -670,9 +821,9 @@
6702011-03-03 Christian Ohler <ohler@gnu.org> 8212011-03-03 Christian Ohler <ohler@gnu.org>
671 822
672 * emacs-lisp/ert.el (ert--explain-equal): New function. 823 * emacs-lisp/ert.el (ert--explain-equal): New function.
673 (ert--explain-equal-rec): Renamed from `ert--explain-not-equal'. 824 (ert--explain-equal-rec): Rename from `ert--explain-not-equal'.
674 All callers changed. 825 All callers changed.
675 (ert--explain-equal-including-properties): Renamed from 826 (ert--explain-equal-including-properties): Rename from
676 `ert--explain-not-equal-including-properties'. All callers 827 `ert--explain-not-equal-including-properties'. All callers
677 changed. 828 changed.
678 829
@@ -8195,8 +8346,8 @@
8195 8346
8196 Sync with Tramp 2.1.19. 8347 Sync with Tramp 2.1.19.
8197 8348
8198 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Protect 8349 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
8199 deleting tmpfile. 8350 Protect deleting tmpfile.
8200 (tramp-gvfs-maybe-open-connection): Use `tramp-compat-funcall'. 8351 (tramp-gvfs-maybe-open-connection): Use `tramp-compat-funcall'.
8201 8352
8202 * net/tramp.el (tramp-handle-expand-file-name) 8353 * net/tramp.el (tramp-handle-expand-file-name)
@@ -10474,8 +10625,8 @@
10474 * net/tramp-ftp.el (tramp-ftp-file-name-handler): 10625 * net/tramp-ftp.el (tramp-ftp-file-name-handler):
10475 Use `delete-file' instead of `tramp-compat-delete-file'. 10626 Use `delete-file' instead of `tramp-compat-delete-file'.
10476 10627
10477 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Use 10628 * net/tramp-gvfs.el (tramp-gvfs-handle-write-region):
10478 `delete-file' instead of `tramp-compat-delete-file'. 10629 Use `delete-file' instead of `tramp-compat-delete-file'.
10479 10630
10480 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): 10631 * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file):
10481 Use `delete-file' instead of `tramp-compat-delete-file'. 10632 Use `delete-file' instead of `tramp-compat-delete-file'.