1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

* lisp/dired.el (dired-restore-desktop-buffer): Demote errors;

eg in case a glob match fails.

Fixes: debbugs:16884
This commit is contained in:
Glenn Morris 2014-02-26 14:18:49 -05:00
parent aea124c47d
commit 9577b56996
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-02-26 Glenn Morris <rgm@gnu.org>
* dired.el (dired-restore-desktop-buffer): Demote errors;
eg in case a glob match fails. (Bug#16884)
2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
* emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
@ -13,7 +18,8 @@
* emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
* faces.el (tty-setup-hook, tty-run-terminal-initialization): Doc fixes.
* faces.el (tty-setup-hook, tty-run-terminal-initialization):
Doc fixes.
* startup.el (term-setup-hook): Doc fix. Make obsolete.
* term/sun.el (sun-raw-prefix-hooks):
Use tty-setup-hook instead of term-setup-hook.

View File

@ -3845,7 +3845,7 @@ Ask means pop up a menu for the user to select one of copy, move or link."
(let* ((dired-dir (car misc-data))
(dir (if (consp dired-dir) (car dired-dir) dired-dir)))
(if (file-directory-p (file-name-directory dir))
(progn
(with-demoted-errors "Desktop: Problem restoring directory: %S"
(dired dired-dir)
;; The following elements of `misc-data' are the keys
;; from `dired-subdir-alist'.