From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: momentary-string-display Date: Sat, 06 Jan 2007 22:47:40 -0500 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1168141869 22393 80.91.229.12 (7 Jan 2007 03:51:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 7 Jan 2007 03:51:09 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 07 04:51:06 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1H3P3o-0003IA-FQ for ged-emacs-devel@m.gmane.org; Sun, 07 Jan 2007 04:51:04 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H3P3n-00008K-TW for ged-emacs-devel@m.gmane.org; Sat, 06 Jan 2007 22:51:03 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1H3P0y-0005b0-Kw for emacs-devel@gnu.org; Sat, 06 Jan 2007 22:48:08 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1H3P0y-0005a3-06 for emacs-devel@gnu.org; Sat, 06 Jan 2007 22:48:08 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H3P0x-0005Zo-Qb for emacs-devel@gnu.org; Sat, 06 Jan 2007 22:48:07 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1H3P0v-0001xo-R2; Sat, 06 Jan 2007 22:48:05 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1H3P0W-0001sr-5O; Sat, 06 Jan 2007 22:47:40 -0500 Original-To: Stephen Leake In-reply-to: (message from Stephen Leake on Sat, 06 Jan 2007 02:36:13 -0500) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:64901 Archived-At: Does this code work? ;; If that pushed message start off the screen, ;; scroll to start it at the top of the screen. (save-excursion (move-to-window-line 0) (if (> (point) pos) (goto-char pos) (recenter 0)))