From xemacs-m  Thu Jun 26 18:32:01 1997
Received: from jagor.srce.hr (hniksic@jagor.srce.hr [161.53.2.130])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id SAA19690
	for <xemacs-beta@xemacs.org>; Thu, 26 Jun 1997 18:32:00 -0500 (CDT)
Received: (from hniksic@localhost)
          by jagor.srce.hr (8.8.5/8.8.4)
	  id BAA26120; Fri, 27 Jun 1997 01:32:00 +0200 (MET DST)
To: XEmacs Developers <xemacs-beta@xemacs.org>
Subject: Re: help-mode-quit
References: <199706261958.PAA03016@rattlesnake>
X-Attribution: Hrv
X-Face: Mie8:rOV<\c/~z{s.X4A{!?vY7{drJ([U]0O=W/<W*SMo/Mv:58:*_y~ki>xDi&N7XG
        KV^$k0m3Oe/)'e%3=$PCR&3ITUXH,cK>]bci&<qQ>Ff%x_>1`T(+M2Gg/fgndU%k*ft
        [(7._6e0n-V%|%'[c|q:;}td$#INd+;?!-V=c8Pqf}3J
From: Hrvoje Niksic <hniksic@srce.hr>
Date: 27 Jun 1997 01:32:00 +0200
In-Reply-To: David Bakhash's message of "Thu, 26 Jun 1997 15:58:04 -0400"
Message-ID: <kigbu4tdjpr.fsf@jagor.srce.hr>
Lines: 28
X-Mailer: Gnus v5.4.59/XEmacs 20.3(beta9) - "Sofia"

David Bakhash <cadet@mit.edu> writes:

> I request that `help-mode-quit' be modified such that when the help
> buffer is *always* burried, regardless of whether one-window-p was
> true on not.

Ha ha ha!

I've made that exact modification, and it entered Sofia. :-)
The code for `help-mode-quit' in 20.3-b9 looks like this:

(defun help-mode-quit ()
  "Exits from help mode, possibly restoring the previous window configuration.
Bury the help buffer to the end of the buffer list."
  (interactive)
  (let ((buf (current-buffer)))
    (cond ((frame-property (selected-frame) 'help-window-config)
	   (set-window-configuration
	    (frame-property (selected-frame) 'help-window-config))
	   (set-frame-property  (selected-frame) 'help-window-config nil))
	  ((not (one-window-p))
	   (delete-window)))
    (bury-buffer buf)))

-- 
Hrvoje Niksic <hniksic@srce.hr> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
main(){printf(&unix["\021%six\012\0"],(unix)["have"]+"fun"-0x60);}

