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: [Emacs-diffs] /srv/bzr/emacs/trunk r108836: Cleanup basic buffer management. Date: Wed, 4 Jul 2012 13:45:55 +0200 Message-ID: References: <4FF42B8F.3050703@yandex.ru> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1341402412 17956 80.91.229.3 (4 Jul 2012 11:46:52 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 4 Jul 2012 11:46:52 +0000 (UTC) Cc: Emacs developers To: Dmitry Antipov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jul 04 13:46:51 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SmO2i-0005Wq-Fp for ged-emacs-devel@m.gmane.org; Wed, 04 Jul 2012 13:46:48 +0200 Original-Received: from localhost ([::1]:53319 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SmO2h-0000iN-Gs for ged-emacs-devel@m.gmane.org; Wed, 04 Jul 2012 07:46:47 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:39361) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SmO2e-0000i2-64 for emacs-devel@gnu.org; Wed, 04 Jul 2012 07:46:45 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SmO2Y-0006U5-3F for emacs-devel@gnu.org; Wed, 04 Jul 2012 07:46:43 -0400 Original-Received: from mail-gg0-f169.google.com ([209.85.161.169]:56849) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SmO2X-0006Tv-Ss for emacs-devel@gnu.org; Wed, 04 Jul 2012 07:46:38 -0400 Original-Received: by ggm4 with SMTP id 4so7397892ggm.0 for ; Wed, 04 Jul 2012 04:46:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=Hrp9lTsgQTCpknCscA2zfE9rXQNNhQvmZPPEB1bVozc=; b=SdY7kHakFfkhn4IFiQr7FWpgJLfsw6DTiGsgXfHl5+Vy2P6w2CDYwbxZ/udCmamZwM +2MAScdeQnsUXKYBhxK182giaxZJeO1p9Oy5V/4d1QhixGIpNaOjiE3sGFQYS0UAl6ZR sYuV0EadEjlPdq4RmZG6vEEK0wtAuGIhDCLZWQ8uFxm4FqnFTIDRs0oQkr4+uNUpe8Z8 Z2dkP+wOo0QFwO8N8em039bncDnq0DqNqi2AhHNe83Ukfq/9TVKK2LlNM5Hs6d5lxSyg xKEAzc7FP1wESSABqBuYETk7kInBZ+8AG6MFEG4/HAF33QvVckgvokm3urgoRkI2GkE3 bn/Q== Original-Received: by 10.68.194.6 with SMTP id hs6mr18448522pbc.133.1341402395759; Wed, 04 Jul 2012 04:46:35 -0700 (PDT) Original-Received: by 10.142.162.16 with HTTP; Wed, 4 Jul 2012 04:45:55 -0700 (PDT) In-Reply-To: <4FF42B8F.3050703@yandex.ru> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.161.169 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:151411 Archived-At: On Wed, Jul 4, 2012 at 1:39 PM, Dmitry Antipov wrote: > I tried both 24.1 and trunk revision 108858, and both behaves identically: > > 1) Start a fresh instance > 2) Staying in *scratch*, eval: > (setq-default major-mode (lambda () (fundamental-mode))) => (lambda (nil) > (fundamental-mode)) > 3) M-x describe-variable, enter 'major mode' => Try my recipe: A one-line .emacs, with just (setq-default major-mode (lambda () (fundamental-mode))) then: emacs C-x C-f ~/.emacs I get an error on trunk, no error on 24.1. Juanma