aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog110
1 files changed, 110 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 07f700f6987..1f82735806a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,109 @@
12011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * net/tramp.el (tramp-with-progress-reporter): Rename from
4 with-progress-reporter. Use `declare'.
5 * net/tramp-smb.el:
6 * net/tramp-sh.el:
7 * net/tramp-gvfs.el: Update all uses.
8
92011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
10
11 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
12 buffer isn't killed before making it current.
13
142011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
15
16 Silence various byte-compiler warnings.
17 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
18 `access-type' and new obsolescence format.
19 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
20 new format.
21 (byte-compile-check-variable): New `access-type' argument.
22 Only warn if the access-type is obsolete.
23 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
24 (byte-compile-variable-set): Adjust callers.
25 * help-fns.el (describe-variable): Adjust to new obsolescence format.
26 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
27 setting it as obsolete.
28 * simple.el (minibuffer-completing-symbol):
29 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
30 access as obsolete.
31 * minibuffer.el (minibuffer-completing-file-name): Don't make it
32 obsolete yet.
33 * international/quail.el (quail-mouse-choose-completion): Remove unused
34 code referring to obsolete var.
35 (quail-choose-completion-string): Remove.
36 * server.el (server-clients-with, server-kill-buffer-query-function)
37 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
38 * proced.el (proced-send-signal):
39 * emacs-lisp/lisp.el (lisp-complete-symbol):
40 Replace completion-annotate-function with completion-extra-properties.
41
422011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
43
44 * simple.el (goto-line): Use read-number.
45 (overriding-map-is-bound): Remove.
46 (saved-overriding-map): Change default.
47 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
48 Take the map as argument.
49 (universal-argument, negative-argument, digit-argument): Use it.
50 (restore-overriding-map): Adjust.
51 (do-auto-fill): Use fill-forward-paragraph.
52 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
53
54 * minibuffer.el (minibuffer-inactive-mode-map): New var.
55 (minibuffer-inactive-mode): New major mode.
56 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
57 the *Messages* buffer" hack.
58 (mouse-popup-menubar): Don't burp if the event is a normal key.
59
60 Miscellaneous tweaks.
61 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
62 lexical scoping as in subr.el's dolist and dotimes.
63 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
64 Silence compiler warning.
65 * thingatpt.el (forward-whitespace): Trivial coding style fix.
66 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
67 * international/ccl.el (ccl-compile): Trivial simplification.
68 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
69 * emacs-lisp/testcover.el (testcover-end): Remove spurious
70 `printflag' argument.
71 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
72 Purecopy the whole obsolescence data.
73
742011-06-01 Leo Liu <sdl.web@gmail.com>
75
76 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
77 improve doc-string as suggested by Marco Pessotto
78 <melmothx@gmail.com>.
79 (rcirc-print): Fix last change.
80
812011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
82
83 * minibuffer.el (complete-with-action): Return nil for the metadata and
84 boundaries of non-functional tables.
85 (completion-table-dynamic): Return nil for the metadata.
86 (completion-table-with-terminator): Add default case, using
87 complete-with-action.
88 (completion--metadata): New function.
89 (completion-all-sorted-completions, minibuffer-completion-help): Use it
90 to try and avoid pathological performance problems.
91 (completion--embedded-envvar-table): Return `category' metadata.
92
932011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
94
95 * subr.el (process-alive-p): New tiny convenience function.
96
972011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
98
99 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
100 content but also its previous major mode.
101
1022011-05-31 Helmut Eller <eller.helmut@gmail.com>
103
104 * debug.el (debug): Restore the previous content of the
105 *Backtrace* buffer when we exit with C-M-c.
106
12011-05-31 Stefan Monnier <monnier@iro.umontreal.ca> 1072011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
2 108
3 * minibuffer.el: Add metadata method to completion tables. 109 * minibuffer.el: Add metadata method to completion tables.
@@ -30,6 +136,10 @@
30 (rcirc-decode-coding-system): Allow value nil for automatic coding 136 (rcirc-decode-coding-system): Allow value nil for automatic coding
31 system detection. 137 system detection.
32 138
1392011-06-01 Glenn Morris <rgm@gnu.org>
140
141 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
142
332011-05-29 Chong Yidong <cyd@stupidchicken.com> 1432011-05-29 Chong Yidong <cyd@stupidchicken.com>
34 144
35 * image.el (image-animate-max-time): Allow nil and t values. 145 * image.el (image-animate-max-time): Allow nil and t values.