summaryrefslogtreecommitdiff
path: root/helm-color.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2014-05-03 06:09:53 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2014-05-03 06:09:53 +0200
commit9b8a67f1e0287196a7f37d91b28d2df7bb2d1bd3 (patch)
tree915ff28bdb6f9c001f6e3164c87dea7961174c9f /helm-color.el
parent2ee3d70b7f0b17b5df7aa9baaf333fd0513014e0 (diff)
* helm-color.el: Remove interactive specs from action functions (#493).
Diffstat (limited to 'helm-color.el')
-rw-r--r--helm-color.el4
1 files changed, 0 insertions, 4 deletions
diff --git a/helm-color.el b/helm-color.el
index 993a1844..e7f751de 100644
--- a/helm-color.el
+++ b/helm-color.el
@@ -64,21 +64,17 @@
(kill-buffer "*Colors*")))
(defun helm-color-insert-name (candidate)
- (interactive)
(with-helm-current-buffer
(insert (helm-colors-get-name candidate))))
(defun helm-color-kill-name (candidate)
- (interactive)
(kill-new (helm-colors-get-name candidate)))
(defun helm-color-insert-rgb (candidate)
- (interactive)
(with-helm-current-buffer
(insert (helm-colors-get-rgb candidate))))
(defun helm-color-kill-rgb (candidate)
- (interactive)
(kill-new (helm-colors-get-rgb candidate)))
(defun helm-color-run-insert-name ()