Function: icalendar-signal-parse-error

icalendar-signal-parse-error is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-signal-parse-error MSG &key (BUFFER (current-buffer)) (POSITION (point)) (SEVERITY 2) (LINE (line-number-at-pos position)) COLUMN RESTART-AT)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(cl-defun ical:signal-parse-error (msg &key (buffer (current-buffer))
                                       (position (point))
                                       (severity 2)
                                       (line (line-number-at-pos position))
                                       column restart-at)
  (signal 'ical:parse-error
          (list :message msg
                :line line
                :column column
                :severity severity
                :position position
                :buffer buffer
                :restart-at restart-at)))