]> git.eshelyaron.com Git - emacs.git/commitdiff
Checkdoc fixes in transient.el
authorStefan Kangas <stefankangas@gmail.com>
Tue, 16 Jul 2024 01:35:59 +0000 (03:35 +0200)
committerEshel Yaron <me@eshelyaron.com>
Thu, 18 Jul 2024 06:27:43 +0000 (08:27 +0200)
* lisp/transient.el (transient-format-description): Checkdoc fixes.

(cherry picked from commit e3bba63ecb9302d5a30c7ec55fa564aa9aba2b11)

lisp/transient.el

index 08bb7b537197f13279850e938fabcf2b56e651ea..cebc8131f5e0668a7bcef09cf370ecc1e2043101 100644 (file)
@@ -4000,9 +4000,9 @@ and its value is returned to the caller."
                         set " ")))))
 
 (cl-defmethod transient-format-description ((obj transient-group))
-  "Format the description by calling the next method.  If the result
-doesn't use the `face' property at all, then apply the face
-`transient-heading' to the complete string."
+  "Format the description by calling the next method.
+If the result doesn't use the `face' property at all, then apply the
+face `transient-heading' to the complete string."
   (and-let* ((desc (transient--get-description obj)))
     (cond ((oref obj inapt)
            (propertize desc 'face 'transient-inapt-suffix))
@@ -4011,8 +4011,9 @@ doesn't use the `face' property at all, then apply the face
           ((propertize desc 'face 'transient-heading)))))
 
 (cl-defmethod transient-format-description :around ((obj transient-suffix))
-  "Format the description by calling the next method.  If the result
-is nil, then use \"(BUG: no description)\" as the description.
+  "Format the description by calling the next method.
+If the result is nil, then use \"(BUG: no description)\" as the
+description.
 If the OBJ's `key' is currently unreachable, then apply the face
 `transient-unreachable' to the complete string."
   (let ((desc (or (cl-call-next-method obj)