From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: major mode in new buffers Date: Fri, 2 Apr 2010 01:10:47 +0200 Message-ID: References: <2f8988ff1003300457w38ee4bf0h259cd7a7187298e0@mail.gmail.com> <87oci41zrg.fsf@mail.jurta.org> <87fx3f5d15.fsf@mail.jurta.org> <87d3yipzbg.fsf@mail.jurta.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1270163483 3789 80.91.229.12 (1 Apr 2010 23:11:23 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 1 Apr 2010 23:11:23 +0000 (UTC) Cc: =?UTF-8?Q?Ren=C3=A9_Kyllingstad?= , Stefan Monnier , emacs-devel@gnu.org To: Juri Linkov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 02 01:11:18 2010 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.69) (envelope-from ) id 1NxTXi-0007YE-9n for ged-emacs-devel@m.gmane.org; Fri, 02 Apr 2010 01:11:18 +0200 Original-Received: from localhost ([127.0.0.1]:54796 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NxTXh-00069a-Ie for ged-emacs-devel@m.gmane.org; Thu, 01 Apr 2010 19:11:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NxTXb-00068N-TG for emacs-devel@gnu.org; Thu, 01 Apr 2010 19:11:11 -0400 Original-Received: from [140.186.70.92] (port=54326 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NxTXa-000684-Nu for emacs-devel@gnu.org; Thu, 01 Apr 2010 19:11:11 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NxTXY-0003h5-QC for emacs-devel@gnu.org; Thu, 01 Apr 2010 19:11:10 -0400 Original-Received: from mail-bw0-f219.google.com ([209.85.218.219]:46580) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NxTXY-0003gv-E9 for emacs-devel@gnu.org; Thu, 01 Apr 2010 19:11:08 -0400 Original-Received: by bwz19 with SMTP id 19so220982bwz.26 for ; Thu, 01 Apr 2010 16:11:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:received:message-id:subject:to:cc:content-type; bh=hVxC2cr0r3vmQ2LuQ4AdfrblEMGp5ZfCY1k6x2sEKEk=; b=K00V3/VfV3NaULGle+/0AFZ1QJMH+7Dh2986lIqtCYo5V5TvzF+F+/JbndiWeXW9cz lpaAx7itxvRkGpQv+xKOAA9DNKWSFL9nQMQzwwOVxEnYrRbsAn5GKMCxS9DpuE49AeLg EuAg2fsHbrOPeTAvdrJPKxSq152RJne2qucv4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=AXG8kyC50p5RF2N0pQ6FSsoKSqyNIqPSS02O5sNkikv1CpdszJEzxqHJyxKQEjk+eE T9EUZxreUmuiiEyCXQloAeAcLkmyoa7c/5bZ08sSpU7q749/BpPfhv34TKblfnr2DkUs jC3tG+GBkfX2dey4Lex9W8ZRbVN0BB5kDm6KI= Original-Received: by 10.204.156.9 with HTTP; Thu, 1 Apr 2010 16:10:47 -0700 (PDT) In-Reply-To: <87d3yipzbg.fsf@mail.jurta.org> Original-Received: by 10.204.8.205 with SMTP id i13mr2205969bki.109.1270163467159; Thu, 01 Apr 2010 16:11:07 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) 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:123041 Archived-At: 2010/4/2 Juri Linkov : > I don't understand what this comment tries to say. > Do you have a recipe to reproduce the remaining problems? With your patch applied, do this: emacs -Q -l ehelp --eval '(global-set-key [?\C-h] 'ehelp-command)' C-h f car r ;; now the *help* buffer is help-mode ==> "End of buffer. Type q to quit viewing" so after restoring the previous major mode, *Help* is in help-mode but the bindings are not OK. Juanma