branch: externals/org-real commit dfcddef3dbaa9f7c598e60c3f40f9de2be97fd85 Author: Tyler Grinn <tylergr...@gmail.com> Commit: Tyler Grinn <tylergr...@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 852c22e..d08e9cc 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)))