From 41c771378a51df9418ef7c290ce6cf04a736de1d Mon Sep 17 00:00:00 2001 From: David Maus Date: Sun, 21 Nov 2010 11:00:39 +0100 Subject: [PATCH] Fixup doc string * org.el (org-link-escape): Fixup doc string. --- lisp/org.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index c6d02c87f..ec817f07c 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -8615,7 +8615,10 @@ This is the list that is used for internal purposes.") This is the list that is used before handing over to the browser.") (defun org-link-escape (text &optional table) - "Escape characters in TEXT that are problematic for links." + "Return percent escaped representation of TEXT. +TEXT is a string with the text to escape. +Optional argument TABLE is a list with characters that should be +escaped. When nil, `org-link-escape-chars' is used." (if (and org-url-encoding-use-url-hexify (not table)) (url-hexify-string text) (setq table (or table org-link-escape-chars))