branch: externals/org-real commit 52c8e6980faf4509fd90ce34673b22b95fe9004e Author: Amy Grinn <grinn....@gmail.com> Commit: Amy Grinn <grinn....@gmail.com>
Added more documentation --- org-real.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org-real.el b/org-real.el index 852c22e00e..d08e9cc6e1 100644 --- a/org-real.el +++ b/org-real.el @@ -424,8 +424,8 @@ matching the one returned from `completing-read'." (defun org-real--read-string-advice (orig prompt link &rest args) "Advise `read-string' during `org-insert-link' to use custom completion. -ORIG is `read-string', PROMPT and LINK are the arguments passed -to it." +ORIG is `read-string', PROMPT and LINK and ARGS are the arguments +passed to it." (if (string= "real" (ignore-errors (url-type (url-generic-parse-url link)))) (org-real-complete link) (apply orig prompt link args)))