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: [PATCH] desktop.el: do not save some minor modes Date: Fri, 26 Oct 2007 10:31:39 +0200 Message-ID: References: <200710251354.00086.zslevin@gmail.com> <200710261253.42357.zslevin@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1193387515 8235 80.91.229.12 (26 Oct 2007 08:31:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 26 Oct 2007 08:31:55 +0000 (UTC) Cc: emacs-devel@gnu.org To: Levin Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Oct 26 10:31:57 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 1IlKbl-0001vp-7c for ged-emacs-devel@m.gmane.org; Fri, 26 Oct 2007 10:31:57 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IlKbc-0002ut-Gy for ged-emacs-devel@m.gmane.org; Fri, 26 Oct 2007 04:31:48 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IlKbY-0002uY-Gs for emacs-devel@gnu.org; Fri, 26 Oct 2007 04:31:44 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IlKbW-0002uM-UW for emacs-devel@gnu.org; Fri, 26 Oct 2007 04:31:44 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IlKbW-0002uJ-PW for emacs-devel@gnu.org; Fri, 26 Oct 2007 04:31:42 -0400 Original-Received: from wa-out-1112.google.com ([209.85.146.182]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IlKbW-00084o-Ek for emacs-devel@gnu.org; Fri, 26 Oct 2007 04:31:42 -0400 Original-Received: by wa-out-1112.google.com with SMTP id k34so954692wah for ; Fri, 26 Oct 2007 01:31:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=+L4+xr5HBvEWV/sRhQ3zjULJLCbMSeHYxjLvkLCbngw=; b=mFfkDQCHlEXS6VnxReTX96M/70LIruRHeLtYfmBiTIyschOvKz36a9jsAId8+To4kcmxHoyvH9TGQmR2fAqIRy6gxBhM4SOAAPD7uHoUhzmqlCTFKzr0FetFP/aQhzFV/+9HLFb+xJXvhiOCtyA5fvVcsQ19wxVrwxM5Q9x9uwU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=aqU954eJcAQZyGx42/sHZIvT2kc+a9ygz6iSbm73kFHaDfcL7Z0Frp52girHz9vIk2wXGL3AJhUtbwtVW3BeCPUTroAcNoukkG5dnMJ3CJWZ0GLxEui2FWYqodmpb0w7+rOq/yelJoqxIA8f2u3+ur7hChxiNunOIPZqbtQe4mo= Original-Received: by 10.115.107.1 with SMTP id j1mr3188159wam.1193387499350; Fri, 26 Oct 2007 01:31:39 -0700 (PDT) Original-Received: by 10.115.72.13 with HTTP; Fri, 26 Oct 2007 01:31:39 -0700 (PDT) In-Reply-To: <200710261253.42357.zslevin@gmail.com> Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: 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:81756 Archived-At: On 10/26/07, Levin wrote: > This line: > > (add-to-list 'desktop-minor-mode-table '(erc-track-minor-mode nil)) > > solves my problem, so this patch is not needed. OTOH, if restoring erc-track-minor-mode from desktop is never a meaningful operation, we should patch erc-track.el to add it automatically to `desktop-minor-mode-table'. Juanma