From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Patch to remove minor modes in tutorial Date: Sun, 09 Jul 2006 10:44:29 +0200 Message-ID: <44B0C1ED.8010905@student.lu.se> References: <449D4787.6030809@student.lu.se> <449EFFBB.80508@student.lu.se> <449FE5AB.1080906@student.lu.se> <44A00F46.3010000@student.lu.se> <44A5C419.5090908@student.lu.se> <44A789AE.8040104@student.lu.se> <44ADA45D.8080406@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1152434697 12481 80.91.229.2 (9 Jul 2006 08:44:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 9 Jul 2006 08:44:57 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 09 10:44:56 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FzUuH-0006qb-Bp for ged-emacs-devel@m.gmane.org; Sun, 09 Jul 2006 10:44:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FzUuG-0001A9-SX for ged-emacs-devel@m.gmane.org; Sun, 09 Jul 2006 04:44:48 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FzUu3-00019z-2M for emacs-devel@gnu.org; Sun, 09 Jul 2006 04:44:35 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FzUu1-00019n-Cu for emacs-devel@gnu.org; Sun, 09 Jul 2006 04:44:33 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FzUu1-00019k-3v for emacs-devel@gnu.org; Sun, 09 Jul 2006 04:44:33 -0400 Original-Received: from [81.228.11.98] (helo=pne-smtpout1-sn1.fre.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FzUuo-0005Eb-GX; Sun, 09 Jul 2006 04:45:22 -0400 Original-Received: from [192.168.123.121] (83.249.218.244) by pne-smtpout1-sn1.fre.skanova.net (7.2.075) id 44A1364D00282BFB; Sun, 9 Jul 2006 10:44:30 +0200 User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) Original-To: rms@gnu.org In-Reply-To: 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:56843 Archived-At: Richard Stallman wrote: > ((eq (car value) 'cua-mode) > (insert "You are using `cua-mode'." > > "You have enabled CUA mode" would be clearer. > > " If the region is not active then C-c will" > " work as it normally does in Emacs.")) > > Please stick to present tense except when present tense is incorrect. > > Please understand that it is ok to change key bindings, but the > tutorial may not work correctly. (See also " ) > > Change that to > > It is legitimate to change key bindings, but changed bindings > do not correspond to what the tutorial says. (See also " ) > > > This code > > (let (initial-bad-keys) > (with-temp-buffer > ... > (unless > (cond ( (eq key-fun def-fun) > ... > > is awfully complex, and most of the job it does is irrelevant. The > tutorial describes a small set of keys, perhaps 40. I think this code > should not concern itself with keys that the tutorial does not teach. > > It should simply have a list of those keys and their standard > bindings. That way it would not need to read bindings.el. > > (Not all the default bindings are in bindings.el, so this code won't > get them all.) > I will fix these issues in a couple of days.