]> git.eshelyaron.com Git - emacs.git/commitdiff
Crosslink some buttonize function doc strings
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 16 Apr 2022 14:59:41 +0000 (16:59 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 16 Apr 2022 14:59:41 +0000 (16:59 +0200)
* lisp/button.el (buttonize-region, buttonize): Crosslink doc
strings for discoverability.

lisp/button.el

index 797ef120316971dc3525a3a840786c499d749012..244201be2d03f1f3abf90b6a88fc7c54ae5567fd 100644 (file)
@@ -620,7 +620,9 @@ When clicked, CALLBACK will be called with the DATA as the
 function argument.  If DATA isn't present (or is nil), the button
 itself will be used instead as the function argument.
 
-If HELP-ECHO, use that as the `help-echo' property."
+If HELP-ECHO, use that as the `help-echo' property.
+
+Also see `buttonize-region'."
   (apply #'propertize string
          (button--properties callback data help-echo)))
 
@@ -642,7 +644,9 @@ When clicked, CALLBACK will be called with the DATA as the
 function argument.  If DATA isn't present (or is nil), the button
 itself will be used instead as the function argument.
 
-If HELP-ECHO, use that as the `help-echo' property."
+If HELP-ECHO, use that as the `help-echo' property.
+
+Also see `buttonize'."
   (add-text-properties start end (button--properties callback data help-echo)))
 
 (provide 'button)