Function: icalendar-read-req-status-info

icalendar-read-req-status-info is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-read-req-status-info S)

Documentation

Read a request status value from S.

S should have been previously matched against icalendar-request-status-info.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:read-req-status-info (s)
  "Read a request status value from S.
S should have been previously matched against `icalendar-request-status-info'."
  ;; TODO: this smells like a design flaw.  Silence the byte compiler for now.
  (ignore s)
  (let ((code (match-string 11))
        (desc (match-string 12))
        (exdata (match-string 13)))
    (list code (ical:read-text desc) (when exdata (ical:read-text exdata)))))