1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

Move `provide' to the end.

(facemenu-read-color): Don't cons unnecessarily.
This commit is contained in:
Stefan Monnier 2002-07-08 01:21:41 +00:00
parent 7598274bda
commit 1ff4ace585

View 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