]> git.eshelyaron.com Git - emacs.git/commitdiff
Expand register-yank-media-handler doc string
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 6 Nov 2021 23:24:13 +0000 (00:24 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 6 Nov 2021 23:24:13 +0000 (00:24 +0100)
* lisp/yank-media.el (register-yank-media-handler): Expand doc string.

lisp/yank-media.el

index cafc198be85ba4033bd47b15b252cbd6fd262715..66eb23430ec6d1286073bc85fa2d65c0f3e15e4d 100644 (file)
@@ -91,7 +91,11 @@ the `register-yank-media-handler' mechanism."
 (defun register-yank-media-handler (types handler)
   "Register HANDLER for dealing with `yank-media' actions for TYPES.
 TYPES should be a MIME media type symbol, a regexp, or a list
-that can contain both symbols and regexps."
+that can contain both symbols and regexps.
+
+HANDLER is a function that will be called with two arguments: The
+MIME type (a symbol on the form `image/png') and the selection
+data (a string)."
   (make-local-variable 'yank-media--registered-handlers)
   (dolist (type (ensure-list types))
     (setf (alist-get type yank-media--registered-handlers nil nil #'equal)