emacs-devel
[Top][All Lists]
Advanced

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

Re: c-update-modeline format for c-block-comment-flag


From: Eli Zaretskii
Subject: Re: c-update-modeline format for c-block-comment-flag
Date: Fri, 13 Oct 2017 15:24:00 +0300

> From: Andy Moreton <address@hidden>
> Date: Fri, 13 Oct 2017 11:24:03 +0100
> 
> (defun c-update-modeline ()
>   (let ((fmt (format "/%s%s%s%s%s"
>                    (if c-block-comment-flag "*" "/")
>                    (if c-electric-flag "l" "")
>                    (if (and c-electric-flag c-auto-newline)
>                        "a" "")
>                    (if c-hungry-delete-key "h" "")
>                    (if (and
>                         ;; (cc-)subword might not be loaded.
>                         (boundp 'c-subword-mode)
>                         (symbol-value 'c-subword-mode))
>                          ;; FIXME: subword-mode already comes with its
>                          ;; own lighter!
>                        "w"
>                      "")))
> 
> This fixed "/" in the modeline string forces this submode lighter to be
> always present, and prevents the diminish or delight packages from being
> able to remove or replace this lighter.
> 
> Can this be fixed for emacs-26 ?

Depends on the fix and on when this was introduced.



reply via email to

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