From: Lars Hansen Date: Thu, 22 Apr 2004 19:49:45 +0000 (+0000) Subject: (Info-restore-desktop-buffer): Delete with-no-warnings. X-Git-Tag: ttn-vms-21-2-B4~6647 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a3f604d663dd96b960ded8bc78a11bbd98e3707;p=emacs.git (Info-restore-desktop-buffer): Delete with-no-warnings. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4b5ab80a042..d1992f60108 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2004-04-22 Lars Hansen + + * info.el (Info-restore-desktop-buffer): Delete with-no-warnings. + * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings. + 2004-04-22 Kim F. Storm * net/telnet.el (telnet): Add optional port arg. diff --git a/lisp/info.el b/lisp/info.el index ad04d8ece73..a284ca7fa2e 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -3724,8 +3724,7 @@ BUFFER is the buffer speedbar is requesting buttons for." (let ((first (nth 0 desktop-buffer-misc)) (second (nth 1 desktop-buffer-misc))) (when (and first second) - (with-no-warnings - (Info-find-node first second)) + (Info-find-node first second) (current-buffer)))) (provide 'info)