help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Emacs 24.3.50.1 subword mode adds comma to modeline


From: Juanma Barranquero
Subject: Re: Emacs 24.3.50.1 subword mode adds comma to modeline
Date: Tue, 16 Apr 2013 16:17:20 +0200

On Mon, Apr 15, 2013 at 11:04 PM, Chris Poole <lists@chrispoole.com> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]