]> git.eshelyaron.com Git - emacs.git/commitdiff
(toolbar-add-item): Use `:mask heuristic'
authorGerd Moellmann <gerd@gnu.org>
Fri, 15 Sep 2000 11:48:44 +0000 (11:48 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 15 Sep 2000 11:48:44 +0000 (11:48 +0000)
instead of `:heuristic-mask t'.

lisp/toolbar/toolbar.el

index 460eb35898945c656c669072772624115cc694c2..927f38313e33321b6d48924e1d32760092b2b0c9 100644 (file)
@@ -75,10 +75,10 @@ Info node `(elisp)Image Descriptors')."
                             (:type xpm :file ,(concat icon ".xpm"))))))
     (when image
       (unless (memq 'xbm image)
-       (setq image (append image '(:heuristic-mask t))))
-       (if (memq :enable props)
-       (let ((dis (append image '(:algorithm laplace))))
-         (setq image (vector image image dis dis))))
+       (setq image (append image '(:mask heuristict))))
+      (if (memq :enable props)
+         (let ((dis (append image '(:algorithm laplace))))
+           (setq image (vector image image dis dis))))
       (define-key-after (or map toolbar-global-map) (vector key)
        `(menu-item ,(symbol-name key) ,def :image ,image ,@props)))))