unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Tutorial needs to be updated to the C-l change
@ 2008-03-09 12:29 Thomas Hühn
  2008-03-09 15:48 ` Thomas Hühn
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Hühn @ 2008-03-09 12:29 UTC (permalink / raw)
  To: emacs-devel

Hi

When starting the Emacs tutorial (today's git version) it greets me with a
big red warning that some basic editing commands have been changed.

   Standard Key   Command                     In Your Emacs   
   C-l            recenter                    M-x recenter     more info

Please adjust the tutorial so that it knows about the change in the binding
of C-l to "recenter-top-bottom".

Thomas





^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Tutorial needs to be updated to the C-l change
  2008-03-09 12:29 Tutorial needs to be updated to the C-l change Thomas Hühn
@ 2008-03-09 15:48 ` Thomas Hühn
  2008-03-09 16:18   ` Thien-Thi Nguyen
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Hühn @ 2008-03-09 15:48 UTC (permalink / raw)
  To: emacs-devel

Thomas Hühn wrote:

> Please adjust the tutorial so that it knows about the change in the
> binding of C-l to "recenter-top-bottom".

I suppose this is it?

--- a/lisp/tutorial.el
+++ b/lisp/tutorial.el
@@ -220,7 +220,7 @@ LEFT and RIGHT are the elements to compare."
              ;; * SUMMARY
              (scroll-up [?\C-v])
              (scroll-down [?\M-v])
-             (recenter [?\C-l])
+             (recenter-top-bottom [?\C-l])

              ;; * BASIC CURSOR CONTROL
              (forward-char [?\C-f])

Works for me, at least.

Thomas





^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Tutorial needs to be updated to the C-l change
  2008-03-09 15:48 ` Thomas Hühn
@ 2008-03-09 16:18   ` Thien-Thi Nguyen
  2008-03-09 16:34     ` Chong Yidong
  0 siblings, 1 reply; 7+ messages in thread
From: Thien-Thi Nguyen @ 2008-03-09 16:18 UTC (permalink / raw)
  To: Thomas Hühn; +Cc: emacs-devel

() Thomas Hühn <xf27@arcor.de>
() Sun, 09 Mar 2008 16:48:24 +0100

   -             (recenter [?\C-l])
   +             (recenter-top-bottom [?\C-l])

Thanks, installed on trunk.

thi




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Tutorial needs to be updated to the C-l change
  2008-03-09 16:18   ` Thien-Thi Nguyen
@ 2008-03-09 16:34     ` Chong Yidong
  2008-03-09 17:06       ` Thien-Thi Nguyen
  0 siblings, 1 reply; 7+ messages in thread
From: Chong Yidong @ 2008-03-09 16:34 UTC (permalink / raw)
  To: Thien-Thi Nguyen; +Cc: Thomas Hühn, emacs-devel

Thien-Thi Nguyen <ttn@gnuvola.org> writes:

> () Thomas Hühn <xf27@arcor.de>
> () Sun, 09 Mar 2008 16:48:24 +0100
>
>    -             (recenter [?\C-l])
>    +             (recenter-top-bottom [?\C-l])
>
> Thanks, installed on trunk.

Thanks.




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Tutorial needs to be updated to the C-l change
  2008-03-09 16:34     ` Chong Yidong
@ 2008-03-09 17:06       ` Thien-Thi Nguyen
  2008-03-09 18:11         ` Reiner Steib
  0 siblings, 1 reply; 7+ messages in thread
From: Thien-Thi Nguyen @ 2008-03-09 17:06 UTC (permalink / raw)
  To: Chong Yidong; +Cc: emacs-devel

() Chong Yidong <cyd@stupidchicken.com>
() Sun, 09 Mar 2008 12:34:48 -0400

BTW, should i have also installed it on EMACS_22_BASE?

thi




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Tutorial needs to be updated to the C-l change
  2008-03-09 17:06       ` Thien-Thi Nguyen
@ 2008-03-09 18:11         ` Reiner Steib
  2008-03-09 19:06           ` Thien-Thi Nguyen
  0 siblings, 1 reply; 7+ messages in thread
From: Reiner Steib @ 2008-03-09 18:11 UTC (permalink / raw)
  To: Thien-Thi Nguyen; +Cc: Chong Yidong, emacs-devel

On Sun, Mar 09 2008, Thien-Thi Nguyen wrote:

> BTW, should i have also installed it on EMACS_22_BASE?

In EMACS_22_BASE, C-l is still bound to `recenter'; no change
required.

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Tutorial needs to be updated to the C-l change
  2008-03-09 18:11         ` Reiner Steib
@ 2008-03-09 19:06           ` Thien-Thi Nguyen
  0 siblings, 0 replies; 7+ messages in thread
From: Thien-Thi Nguyen @ 2008-03-09 19:06 UTC (permalink / raw)
  To: emacs-devel

() Reiner Steib <reinersteib+gmane@imap.cc>
() Sun, 09 Mar 2008 19:11:21 +0100

   In EMACS_22_BASE, C-l is still bound to `recenter';
   no change required.

Cool, thanks for checking.

thi




^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-03-09 19:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-09 12:29 Tutorial needs to be updated to the C-l change Thomas Hühn
2008-03-09 15:48 ` Thomas Hühn
2008-03-09 16:18   ` Thien-Thi Nguyen
2008-03-09 16:34     ` Chong Yidong
2008-03-09 17:06       ` Thien-Thi Nguyen
2008-03-09 18:11         ` Reiner Steib
2008-03-09 19:06           ` Thien-Thi Nguyen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).