diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/info.el | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4b5ab80a042..d1992f60108 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-04-22 Lars Hansen <larsh@math.ku.dk> | ||
| 2 | |||
| 3 | * info.el (Info-restore-desktop-buffer): Delete with-no-warnings. | ||
| 4 | * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings. | ||
| 5 | |||
| 1 | 2004-04-22 Kim F. Storm <storm@cua.dk> | 6 | 2004-04-22 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * net/telnet.el (telnet): Add optional port arg. | 8 | * 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." | |||
| 3724 | (let ((first (nth 0 desktop-buffer-misc)) | 3724 | (let ((first (nth 0 desktop-buffer-misc)) |
| 3725 | (second (nth 1 desktop-buffer-misc))) | 3725 | (second (nth 1 desktop-buffer-misc))) |
| 3726 | (when (and first second) | 3726 | (when (and first second) |
| 3727 | (with-no-warnings | 3727 | (Info-find-node first second) |
| 3728 | (Info-find-node first second)) | ||
| 3729 | (current-buffer)))) | 3728 | (current-buffer)))) |
| 3730 | 3729 | ||
| 3731 | (provide 'info) | 3730 | (provide 'info) |