]> git.eshelyaron.com Git - emacs.git/commitdiff
Move `provide' to the end.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 8 Jul 2002 01:21:41 +0000 (01:21 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 8 Jul 2002 01:21:41 +0000 (01:21 +0000)
(facemenu-read-color): Don't cons unnecessarily.

lisp/facemenu.el

index ca81ebec67d5cc9580896cfa14c3c559a43d1b63..37399e0d90165b51c6e9dfe3d49d523b7189f55a 100644 (file)
@@ -86,8 +86,6 @@
 
 ;;; Code:
 
-(provide 'facemenu)
-
 (eval-when-compile 
   (require 'help)
   (require 'button))
@@ -466,7 +464,7 @@ These special properties include `invisible', `intangible' and `read-only'."
   "Read a color using the minibuffer."
   (let ((col (completing-read (or prompt "Color: ") 
                              (or facemenu-color-alist
-                                 (mapcar 'list (defined-colors)))
+                                 (defined-colors))
                              nil t)))
     (if (equal "" col)
        nil
@@ -735,4 +733,5 @@ Returns the non-nil value it found, or nil if all were nil."
 
 (facemenu-update)
 
+(provide 'facemenu)
 ;;; facemenu.el ends here