[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#68600: 30.0.50; Bad mode hook docstring when mode-line constructs ar
From: |
Phil Sainty |
Subject: |
bug#68600: 30.0.50; Bad mode hook docstring when mode-line constructs are present in the mode-name |
Date: |
Sun, 21 Jan 2024 16:20:46 +1300 |
User-agent: |
Orcon Webmail |
"Hook run after entering ‘example-lisp-mode’."
This is also consistent with the minor mode hook docstring code,
which is doing this:
(put ',hook 'variable-documentation
,(format "Hook run after entering or leaving `%s'.
No problems result if this variable is not bound.
`add-hook' automatically binds it. (This is true for all hook
variables.)"
modefun))
The sole difference being %S vs %s -- I figure that should be
consistent one way or the other?