aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2011-11-20 20:35:27 +0100
committerJuanma Barranquero <[email protected]>2011-11-20 20:35:27 +0100
commitfe7a3057a38e896a9c4ad12c831fb84a5d808691 (patch)
treebcb23e440925fde576409d960a71ee6df320331a /lisp/org
parent09f5d05492b6c78421c71858d0d5c4434218b8fc (diff)
Fix typos.
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/ChangeLog10
-rw-r--r--lisp/org/org.el6
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index d9831a9186..1cdb0a6f57 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,3 +1,7 @@
+2011-11-20 Juanma Barranquero <[email protected]>
+
+ * org.el (org-link-unescape, org-link-unescape-compound): Fix typos.
+
2011-11-20 Andreas Schwab <[email protected]>
* org-list.el (org-list-send-item): Use sort instead of sort*.
@@ -4173,7 +4177,7 @@
2011-07-28 David Maus <[email protected]>
- * org.el (org-link-escape): New unicode aware percent encoding
+ * org.el (org-link-escape): New Unicode aware percent encoding
algorithm.
2011-07-28 Sebastian Rose <[email protected]>
@@ -4181,7 +4185,7 @@
* org-protocol.el (org-protocol-unhex-single-byte-sequence): New
function. Decode hex-encoded singly byte sequences.
(org-protocol-unhex-compound): Use new function if decoding sequence
- as unicode character failed.
+ as Unicode character failed.
2011-07-28 Bastien Guerry <[email protected]>
@@ -14394,7 +14398,7 @@
2009-08-06 Carsten Dominik <[email protected]>
* org.el (org-edit-src-code, org-edit-fixed-width-region): Use a
- better bufer-generating mechanism.
+ better buffer-generating mechanism.
(org-edit-src-find-buffer): New function.
* org-icalendar.el (org-print-icalendar-entries): Don't check for
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 25bfb8a78e..afd4ea6b4c 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -8775,8 +8775,8 @@ 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
-encodeURIComponent. E.g. `%C3%B6' is the german Umlaut `ö'."
+ "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)
(while (setq pos (string-match "\\(%[0-9a-f][0-9a-f]\\)+" str pos))
@@ -8786,7 +8786,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