summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-04-20 13:20:42 +0200
committerBastien Guerry <bzg@altern.org>2012-04-20 13:20:42 +0200
commit41939cb04b8b1a3d169952a40d0f59b2dd90ff33 (patch)
treed3a85e771a10b0aa825d6d206ce0c58454b753b2
parentd89823a75b3a8a98ee5cee11b9f8f77143673f9f (diff)
downloadorg-mode-41939cb04b8b1a3d169952a40d0f59b2dd90ff33.tar.gz
org-clock.el (org-program-exists): Fix docstring.
* org-clock.el (org-program-exists): Fix docstring. Thanks to Sébastien Vauban for reporting this.
-rw-r--r--lisp/org-clock.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index a172d77..25a36cf 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -694,7 +694,7 @@ Use alsa's aplay tool if available."
(error (beep t) (beep t)))))))))
(defun org-program-exists (program-name)
- "Checks whenever we can locate program and launch it."
+ "Checks whenever we can locate PROGRAM-NAME using the `which' executable."
(if (member system-type '(gnu/linux darwin))
(= 0 (call-process "which" nil nil nil program-name))))