Function: icalendar-unescape-text-string
icalendar-unescape-text-string is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-unescape-text-string S)
Documentation
Unescape the text in string S.
Unescaping replaces literal '\n' and '\N' with newline, and removes backslashes that escape commas, semicolons, and backslashes.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:unescape-text-string (s)
"Unescape the text in string S.
Unescaping replaces literal '\\n' and '\\N' with newline, and removes
backslashes that escape commas, semicolons, and backslashes."
(with-temp-buffer
(insert s)
(ical:unescape-text-in-region (point-min) (point-max))
(buffer-string)))