aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2010-09-17 14:07:47 +0900
committerKenichi Handa2010-09-17 14:07:47 +0900
commit005cbf40d539d48665d7c37d5b09dca280b81c32 (patch)
treef09fb916e5a1aa09dcfed930b1cf5aa3b17bbb9c
parent78a217725f91bce7f3981c1ba1fdbdedab9cc96a (diff)
parent6e23d4a4234a408880e05c4c4bf6ce8b321c56ce (diff)
downloademacs-005cbf40d539d48665d7c37d5b09dca280b81c32.tar.gz
emacs-005cbf40d539d48665d7c37d5b09dca280b81c32.zip
merge trunk
-rw-r--r--lisp/ChangeLog17
-rw-r--r--lisp/ido.el2
-rw-r--r--lisp/mail/sendmail.el1
-rw-r--r--lisp/net/tramp-cmds.el1
-rw-r--r--lisp/term/x-win.el3
5 files changed, 23 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 48b5581d8a9..f7960c1d749 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,18 @@
12010-09-16 Chong Yidong <cyd@stupidchicken.com>
2
3 * mail/sendmail.el: Add "*unsent mail*" to
4 same-window-buffer-names.
5
6 * term/x-win.el (x-cut-buffer-or-selection-value): Define as
7 obsolete alias for x-selection-value.
8
9 * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
10
112010-09-16 Michael Albinus <michael.albinus@gmx.de>
12
13 * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
14 cookie.
15
12010-09-15 Michael Albinus <michael.albinus@gmx.de> 162010-09-15 Michael Albinus <michael.albinus@gmx.de>
2 17
3 * net/tramp-compat.el (tramp-compat-with-temp-message) 18 * net/tramp-compat.el (tramp-compat-with-temp-message)
@@ -9,7 +24,7 @@
9 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'. 24 * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
10 25
11 * net/tramp.el (tramp-progress-reporter-update): Use 26 * net/tramp.el (tramp-progress-reporter-update): Use
12 `tramp-compat-funcall. 27 `tramp-compat-funcall'.
13 28
14 * net/tramp.el (tramp-process-actions): 29 * net/tramp.el (tramp-process-actions):
15 * net/tramp-gvfs.el (tramp-handle-vc-registered): 30 * net/tramp-gvfs.el (tramp-handle-vc-registered):
diff --git a/lisp/ido.el b/lisp/ido.el
index 858ee3ed5b0..2df9b8666af 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -3403,6 +3403,8 @@ for first matching file."
3403 (if default 3403 (if default
3404 (setq ido-temp-list 3404 (setq ido-temp-list
3405 (cons default (delete default ido-temp-list)))) 3405 (cons default (delete default ido-temp-list))))
3406 (if ido-use-virtual-buffers
3407 (ido-add-virtual-buffers-to-list))
3406 (run-hooks 'ido-make-buffer-list-hook) 3408 (run-hooks 'ido-make-buffer-list-hook)
3407 ido-temp-list)) 3409 ido-temp-list))
3408 3410
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 3cc1bf5fe19..d802b75ee06 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -1663,6 +1663,7 @@ If the current line has `mail-yank-prefix', insert it on the new line."
1663;; in middle of loading the file. 1663;; in middle of loading the file.
1664 1664
1665;;;###autoload (add-hook 'same-window-buffer-names (purecopy "*mail*")) 1665;;;###autoload (add-hook 'same-window-buffer-names (purecopy "*mail*"))
1666;;;###autoload (add-hook 'same-window-buffer-names (purecopy "*unsent mail*"))
1666 1667
1667;;;###autoload 1668;;;###autoload
1668(defun mail (&optional noerase to subject in-reply-to cc replybuffer actions) 1669(defun mail (&optional noerase to subject in-reply-to cc replybuffer actions)
diff --git a/lisp/net/tramp-cmds.el b/lisp/net/tramp-cmds.el
index 32cbb16b9e8..5937a737b96 100644
--- a/lisp/net/tramp-cmds.el
+++ b/lisp/net/tramp-cmds.el
@@ -50,6 +50,7 @@
50 x))) 50 x)))
51 (buffer-list)))) 51 (buffer-list))))
52 52
53;;;###tramp-autoload
53(defun tramp-cleanup-connection (vec) 54(defun tramp-cleanup-connection (vec)
54 "Flush all connection related objects. 55 "Flush all connection related objects.
55This includes password cache, file cache, connection cache, buffers. 56This includes password cache, file cache, connection cache, buffers.
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index b19e0f854d9..1950bef19be 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -1344,6 +1344,9 @@ The value nil is the same as this list:
1344 (or clip-text primary-text) 1344 (or clip-text primary-text)
1345 ))) 1345 )))
1346 1346
1347(define-obsolete-function-alias 'x-cut-buffer-or-selection-value
1348 'x-selection-value "24.1")
1349
1347;; Arrange for the kill and yank functions to set and check the clipboard. 1350;; Arrange for the kill and yank functions to set and check the clipboard.
1348(setq interprogram-cut-function 'x-select-text) 1351(setq interprogram-cut-function 'x-select-text)
1349(setq interprogram-paste-function 'x-selection-value) 1352(setq interprogram-paste-function 'x-selection-value)