diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2023-11-27 16:12:04 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2023-11-27 16:12:04 +0100 |
| commit | 2b892a27a1de698a8159972cc53c39a97c916ca1 (patch) | |
| tree | 4a7da2da3e327b7758fcc22e96ee091600f18c65 /lisp | |
| parent | 79f5ec70f33e86302a773f7c69ad4b3869c8be3d (diff) | |
transient-format-key(around:suffix): Add docstring
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/transient.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/transient.el b/lisp/transient.el index 705ab83..8d6f470 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -3710,6 +3710,7 @@ as a button." "Format OBJ's `key' for display and return the result.") (cl-defmethod transient-format-key :around ((obj transient-suffix)) + "Add `transient-inapt-suffix' face if suffix is inapt." (let ((str (cl-call-next-method))) (if (oref obj inapt) (transient--add-face str 'transient-inapt-suffix) |
