diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-17 06:30:41 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-17 06:30:41 +0200 |
commit | dbed53839136ef0e3f283599f51a5cef00343e28 (patch) | |
tree | e23d853fa6d459df095073abac75abe9a850a2aa /lisp/org | |
parent | e2ccd358c9d5fe5896bab31ed4c1d5b1ad8262ce (diff) | |
parent | f5218385c064aa959650bfe49ca32795270851eb (diff) | |
download | emacs-dbed53839136ef0e3f283599f51a5cef00343e28.tar.gz emacs-dbed53839136ef0e3f283599f51a5cef00343e28.tar.bz2 emacs-dbed53839136ef0e3f283599f51a5cef00343e28.zip |
Merge from origin/emacs-28
f5218385c0 Fix obsoletion of nntp-authinfo-file
10b6919870 ; Fix typos
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/ol.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/ol.el b/lisp/org/ol.el index a0dad926bc2..1df59e2458f 100644 --- a/lisp/org/ol.el +++ b/lisp/org/ol.el @@ -937,7 +937,7 @@ characters that should be escaped." (defun org-link-decode (s) "Decode percent-encoded parts in string S. -E.g. \"%C3%B6\" becomes the german o-Umlaut." +E.g. \"%C3%B6\" becomes the German o-Umlaut." (replace-regexp-in-string "\\(%[0-9A-Za-z]\\{2\\}\\)+" #'org-link--decode-compound s t t)) |