summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2011-11-28 15:07:49 +0100
committerBastien Guerry <bzg@altern.org>2011-11-28 15:07:49 +0100
commitfd94918e418838fce6a2b04e27ec7f89aec87a34 (patch)
treeed63e887a11505e3cc2bd91d1395a55d339f5b77
parent811f9160deaa3ea07cb38a9a38b12905e5549783 (diff)
downloadorg-mode-fd94918e418838fce6a2b04e27ec7f89aec87a34.tar.gz
org.el: Fix two typos in docstrings.
* org.el (org-link-unescape, org-link-unescape-compound): Fix two typos in docstrings.
-rw-r--r--lisp/org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org.el b/lisp/org.el
index c10aa11..915a8ac 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -8945,7 +8945,7 @@ If optional argument MERGE is set, merge TABLE into
(char-to-string char))) text "")))
(defun org-link-unescape (str)
- "Unhex hexified unicode strings as returned from the JavaScript function
+ "Unhex hexified Unicode strings as returned from the JavaScript function
encodeURIComponent. E.g. `%C3%B6' is the german Umlaut `ö'."
(unless (and (null str) (string= "" str))
(let ((pos 0) (case-fold-search t) unhexed)
@@ -8956,7 +8956,7 @@ encodeURIComponent. E.g. `%C3%B6' is the german Umlaut `ö'."
str)
(defun org-link-unescape-compound (hex)
- "Unhexify unicode hex-chars. E.g. `%C3%B6' is the German Umlaut `ö'.
+ "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German Umlaut `ö'.
Note: this function also decodes single byte encodings like
`%E1' (\"á\") if not followed by another `%[A-F0-9]{2}' group."
(save-match-data