Function: icalendar-errors-p

icalendar-errors-p is a byte-compiled function defined in icalendar.el.gz.

Signature

(icalendar-errors-p &optional ERR-BUFFER)

Documentation

Return non-nil if iCalendar errors have been reported in ERR-BUFFER.

ERR-BUFFER defaults to the buffer returned by icalendar-error-buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar.el.gz
(defun ical:errors-p (&optional err-buffer)
  "Return non-nil if iCalendar errors have been reported in ERR-BUFFER.
ERR-BUFFER defaults to the buffer returned by `icalendar-error-buffer'."
  (with-current-buffer (or err-buffer (ical:error-buffer))
    (not (= (point-min) (point-max)))))