]> git.eshelyaron.com Git - emacs.git/commitdiff
(calendar-goto-info-node): Don't let
authorRichard M. Stallman <rms@gnu.org>
Sat, 18 Nov 1995 18:24:42 +0000 (18:24 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 18 Nov 1995 18:24:42 +0000 (18:24 +0000)
same-window-buffer-names do its usual job--force *info* buffer
into another window.

lisp/calendar/calendar.el

index e62c9b3cf8cf12e96f008ff07aee8449c0fa81ee..ad60d2dea968cb74eae50184fc103ecd15bada30 100644 (file)
@@ -1772,11 +1772,12 @@ the inserted text.  Value is always t."
   "Go to the info node for the calendar."
   (interactive)
   (require 'info)
-  (let ((where (Info-find-emacs-command-nodes 'calendar)))
+  (let ((where (save-window-excursion
+                (Info-find-emacs-command-nodes 'calendar))))
     (if (not where)
         (error "Couldn't find documentation for the calendar.")
-      (save-window-excursion (info))
-      (pop-to-buffer "*info*")
+      (let (same-window-buffer-names)
+       (info))
       (Info-find-node (car (car where)) (car (cdr (car where)))))))
 
 (defun calendar-mode ()