]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix list-colors-print handling of callback arg
authorMauro Aranda <maurooaranda@gmail.com>
Tue, 19 Jan 2021 12:25:00 +0000 (09:25 -0300)
committerMauro Aranda <maurooaranda@gmail.com>
Tue, 19 Jan 2021 12:25:00 +0000 (09:25 -0300)
* lisp/facemenu.el (list-colors-print): Keeping
backward-compatibility, don't fail when passed a closure object as
CALLBACK.  (Bug#45831)

lisp/facemenu.el

index 2609397b0d99c01ab22b67430de8a733a7d7bd2d..dc5f8f46abac18f40450111d06b882400d360dd0 100644 (file)
@@ -606,9 +606,14 @@ color.  The function should accept a single argument, the color name."
 
 (defun list-colors-print (list &optional callback)
   (let ((callback-fn
-        (if callback
-            `(lambda (button)
-               (funcall ,callback (button-get button 'color-name))))))
+         ;; Expect CALLBACK to be a function, but allow it to be a form that
+         ;; evaluates to a function, for backward-compatibility.  (Bug#45831)
+         (cond ((functionp callback)
+                (lambda (button)
+                  (funcall callback (button-get button 'color-name))))
+               (callback
+                `(lambda (button)
+                  (funcall ,callback (button-get button 'color-name)))))))
     (dolist (color list)
       (if (consp color)
          (if (cdr color)