Function: org-entry-restore-space
org-entry-restore-space is a byte-compiled function defined in
org.el.gz.
Signature
(org-entry-restore-space S)
Documentation
Restore spaces and newline in string S.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-entry-restore-space (s)
"Restore spaces and newline in string S."
(while (string-match "%20" s)
(setq s (replace-match " " t t s)))
(while (string-match "%0A" s)
(setq s (replace-match "\n" t t s)))
s)