>>>> "JM" == Jeff Mincy
<jeff(a)delphioutpost.com> writes:
JM> A slightly different idea is to
integrate things like info,
JM> hyper apropos, mail, etc with uniquify. Eg, if I am using
JM> uniquify then different packages like info/hyper apropos/mail
JM> should create uniquified names - eg info<vm>,
JM> reply<xemacs-beta>, apropos<uniquify>
To my understanding renaming the *info* buffer would not work with the
standard info.el package as it is right now. In this package the
buffer is called by its name, and the name is hardcoded. It might,
however, be easy to change. (I just checked, the buffer name occurs
only in 8 places:
583: (if (get-buffer "*info*")
584: (switch-to-buffer "*info*")
659: (switch-to-buffer "*info*")
747: (if (not (eq (current-buffer) (get-buffer "*info*")))
1385: (set-buffer (get-buffer "*info*"))
2315: (pop-to-buffer "*info*"))
2362: (pop-to-buffer "*info*"))))
2385: (pop-to-buffer "*info*"))
Volker
--