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: scroll-conservatively default Date: Thu, 06 Dec 2007 16:43:30 -0500 Message-ID: References: <200712020048.lB20mS9R002812@oogie-boogie.ics.uci.edu> <200712032120.lB3LKwJ1003309@oogie-boogie.ics.uci.edu> <85odd4qdsx.fsf@lola.goethe.zz> Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: ger.gmane.org 1196977501 26697 80.91.229.12 (6 Dec 2007 21:45:01 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 6 Dec 2007 21:45:01 +0000 (UTC) Cc: miles@gnu.org, sdl.web@gmail.com, emacs-devel@gnu.org To: Andreas Schwab Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 06 22:45:09 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 1J0OWi-0002lR-Bx for ged-emacs-devel@m.gmane.org; Thu, 06 Dec 2007 22:45:00 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J0OWR-00059a-Ik for ged-emacs-devel@m.gmane.org; Thu, 06 Dec 2007 16:44:43 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J0OVK-0004B3-5M for emacs-devel@gnu.org; Thu, 06 Dec 2007 16:43:34 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J0OVI-00049t-9n for emacs-devel@gnu.org; Thu, 06 Dec 2007 16:43:33 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J0OVI-00049k-5A for emacs-devel@gnu.org; Thu, 06 Dec 2007 16:43:32 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J0OVH-0001nE-Nc for emacs-devel@gnu.org; Thu, 06 Dec 2007 16:43:31 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1J0OVG-0001FP-N3; Thu, 06 Dec 2007 16:43:30 -0500 In-reply-to: (message from Andreas Schwab on Thu, 06 Dec 2007 12:36:43 +0100) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:84810 Archived-At: I have this since ages: (defun scroll-up-in-place (n) (interactive "p") (scroll-up n)) (defun scroll-down-in-place (n) (interactive "p") (scroll-down n)) (define-key global-map [(shift next)] 'scroll-up-in-place) (define-key global-map [(shift prior)] 'scroll-down-in-place) Is this simply a way to scroll by one line with just one character?