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: Thu, 25 Oct 2007 10:40:10 +0200 Message-ID: References: <200710251354.00086.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 1193301636 22444 80.91.229.12 (25 Oct 2007 08:40:36 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 25 Oct 2007 08:40:36 +0000 (UTC) Cc: emacs-devel@gnu.org To: Levin Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 25 10:40:37 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 1IkyGT-0006IL-Vt for ged-emacs-devel@m.gmane.org; Thu, 25 Oct 2007 10:40:30 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IkyGL-0002iA-Mj for ged-emacs-devel@m.gmane.org; Thu, 25 Oct 2007 04:40:21 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IkyGE-0002fz-Vu for emacs-devel@gnu.org; Thu, 25 Oct 2007 04:40:15 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IkyGC-0002f3-Pn for emacs-devel@gnu.org; Thu, 25 Oct 2007 04:40:14 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IkyGC-0002ew-JF for emacs-devel@gnu.org; Thu, 25 Oct 2007 04:40:12 -0400 Original-Received: from rv-out-0910.google.com ([209.85.198.186]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IkyGC-0004oe-6E for emacs-devel@gnu.org; Thu, 25 Oct 2007 04:40:12 -0400 Original-Received: by rv-out-0910.google.com with SMTP id c27so386547rvf for ; Thu, 25 Oct 2007 01:40:10 -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=fvbRjku0cvOT7ZpW4u+j3jos22F+nH9brhRlj2m7qyo=; b=SlkDtlRjWRlJ70qE3bdjyvUgvWKrWXV2SIWyDU+jWZyPSBvxd89KRFrtCCqYmRIovjX2dwnpxyIVsAIe7U7FL3QYOGxKOwoaI6fuBvbx0vQyLqlMNt9oHzjxSAJRLQ3zhpsiF8n0aiGNaxkjeBM5Ag+azmlS5IKSck1d3mjc+ZE= 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=HtHYz+8/E2ocm5up0iqmB7BG2SNXZwmZYHGYDHi6BXqnqwoC0Vx9hrU/P9gp9A7Pp+M8/k99FsIJlqUohBC78urcDyEz0fE1u5WuD03tkN5Jq8xB46htJz6M3yu/KQyG2ey78cEHA7bwW1dREO5DoSf/aUNb4BqxgGkRWBy2piI= Original-Received: by 10.115.58.1 with SMTP id l1mr1804641wak.1193301610683; Thu, 25 Oct 2007 01:40:10 -0700 (PDT) Original-Received: by 10.115.72.13 with HTTP; Thu, 25 Oct 2007 01:40:10 -0700 (PDT) In-Reply-To: <200710251354.00086.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:81695 Archived-At: On 10/25/07, Levin wrote: > I use desktop.el, and find that it will save all the minor modes, which is not > proper. Like erc-track-mode, if ERC is not started, this minor mode is > meaningless. Isn't enough to add (erc-track-mode nil) to `desktop-minor-mode-table'? Juanma