Function: icalendar-fix-blank-lines

icalendar-fix-blank-lines is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-fix-blank-lines)

Documentation

Remove blank lines.

This function is intended to be used from icalendar-pre-parsing-hook, which see.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:fix-blank-lines ()
  "Remove blank lines.
This function is intended to be used from `icalendar-pre-parsing-hook',
which see."
  (goto-char (point-min))
  (while (re-search-forward (rx "\n" (zero-or-more space) line-end)
                            nil t)
    (replace-match "" nil nil)))