home *** CD-ROM | disk | FTP | other *** search
- >>>>> On 12 May 1993 09:06:13 EST,
- >>>>> In message <9305121406.AA09475@hopi.lks.csi.com>,
- >>>>> irvine@lks.csi.com wrote:
-
- irvine> I need an elisp function that given a buffer returns the
- irvine> screen that it is currently being displayed in, otherwise
- irvine> returns nil.
-
- (defun get-buffer-screen (buffer)
- (let ((win (get-buffer-window buffer t t)))
- (and win (window-screen win))))
-
-