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

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

Weird capitalisation in "<mode-name> enabled in current buffer"


From: Joost Kremers
Subject: Weird capitalisation in "<mode-name> enabled in current buffer"
Date: Wed, 31 Aug 2022 13:34:12 +0200
User-agent: mu4e 1.8.3; emacs 28.1.91

Hi list,

I "wrote" a teeny-tiny minor mode `dedicated-mode` inspired by the same-name
mode available on Melpa. It's basically just a single line:

```
(define-minor-mode dedicated-mode
  "Minor mode to dedicate a window to its buffer."
  :init-value nil :lighter " D" :global nil
  (set-window-dedicated-p nil dedicated-mode))
```

Now, never mind that this shouldn't be a minor mode at all, since it should be
linked to the window, not the buffer. What's strange is that when I activate
this mode, the message in the echo area reads:

DeDicateD moDe enabled in current buffer

Note the capital Ds in the words "DeDicateD moDe". Same thing happens when I
deactivate the mode.

Funny thing is, if I change the :lighter in the mode definition to lower case
"d", the capitalisation does not happen.

So, what should I file this under? Bug or joke? :D


-- 
Joost Kremers
Life has its moments



reply via email to

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