Selaa lähdekoodia

org-clock.el (org-program-exists): Fix docstring.

* org-clock.el (org-program-exists): Fix docstring.

Thanks to Sébastien Vauban for reporting this.
Bastien Guerry 13 vuotta sitten
vanhempi
commit
80cc1ccd9e
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      lisp/org-clock.el

+ 1 - 1
lisp/org-clock.el

@@ -664,7 +664,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))))