From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.help Subject: Re: Emacs 24.3.50.1 subword mode adds comma to modeline Date: Tue, 16 Apr 2013 16:17:20 +0200 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1366125024 21712 80.91.229.3 (16 Apr 2013 15:10:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 16 Apr 2013 15:10:24 +0000 (UTC) Cc: Emacs Help List To: Chris Poole Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Apr 16 17:10:28 2013 Return-path: Envelope-to: geh-help-gnu-emacs@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 1US7WZ-0000n2-KU for geh-help-gnu-emacs@m.gmane.org; Tue, 16 Apr 2013 17:10:23 +0200 Original-Received: from localhost ([::1]:37037 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US7LG-0001Z0-Hq for geh-help-gnu-emacs@m.gmane.org; Tue, 16 Apr 2013 10:58:42 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:42904) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US7Jl-0006aH-Ij for help-gnu-emacs@gnu.org; Tue, 16 Apr 2013 10:57:17 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1US794-0006rF-BF for help-gnu-emacs@gnu.org; Tue, 16 Apr 2013 10:46:08 -0400 Original-Received: from mail-ee0-f50.google.com ([74.125.83.50]:64856) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US6ht-0003g6-Fx for help-gnu-emacs@gnu.org; Tue, 16 Apr 2013 10:18:01 -0400 Original-Received: by mail-ee0-f50.google.com with SMTP id e53so275343eek.9 for ; Tue, 16 Apr 2013 07:18:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=T69+y9fnUBxTZeeuNzMfz5aH9qjWrOthV6MSsDwZjVg=; b=UnYCHQwPpEOehDNgZWyq4bW82uUQhCcj+lcBiR+mT4scJzuMnG5MzW5DvnBuWEqDiq o2OCy425rt4A/ntDX6kHMIqGw+DV+lbqy7x1fBSMTYBWwz6/SWkDG2Fy/7MqdF9V+UJq flSUj/vrjxwptC92WJQBCciedL2zEPF8whzDGYKE5Mo6WGElZ0O9YJF41/EmfqCachOB Grw+vOfRTDNMYq493h+bkdpk4bWzVU4pg5Ttr+SsPyLtMsroTFKltH8J7oN4ghNM/Rd7 cM+Zdikhj2DUCKLmQ4h/v+m+EgpfHiqovtkDw5LvxeHpMusAOUNRdY+n1ThV31BbfjjM nyYg== X-Received: by 10.14.174.5 with SMTP id w5mr6980147eel.1.1366121880183; Tue, 16 Apr 2013 07:18:00 -0700 (PDT) Original-Received: by 10.14.189.1 with HTTP; Tue, 16 Apr 2013 07:17:20 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 74.125.83.50 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:90194 Archived-At: On Mon, Apr 15, 2013 at 11:04 PM, Chris Poole wrote: > Is there a reason it's changed? Seems annoying to see a > comma in the modeline... Most minor modes use a lighter to show that they are active. In this case, I suppose the change is to help distinguish between subword-mode and the new superword-mode. Anyway, you can remove it from your .emacs: (let ((entry (assq 'subword-mode minor-mode-alist))) (when entry (setcdr entry '(nil)))) or set '(nil) to '(" sw") or whatever you like. J