Function: icalendar--disable-auto-fill

icalendar--disable-auto-fill is a byte-compiled function defined in icalendar-mode.el.gz.

Signature

(icalendar--disable-auto-fill)

Documentation

Disable auto-fill-mode in iCalendar buffers.

Auto-fill-mode interferes with line folding and syntax highlighting, so it is off by default in iCalendar buffers. This function is intended to be run from icalendar-mode-hook.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-mode.el.gz
(defun ical:-disable-auto-fill ()
  "Disable `auto-fill-mode' in iCalendar buffers.
Auto-fill-mode interferes with line folding and syntax highlighting, so
it is off by default in iCalendar buffers.  This function is intended to
be run from `icalendar-mode-hook'."
  (when auto-fill-function
    (auto-fill-mode -1)))