Function: table--warn-incompatibility

table--warn-incompatibility is a byte-compiled function defined in table.el.gz.

Signature

(table--warn-incompatibility)

Documentation

If called from interactive operation warn the know incompatibilities.

This feature is disabled when table-disable-incompatibility-warning is non-nil. The warning is done only once per session for each item.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--warn-incompatibility ()
  "If called from interactive operation warn the know incompatibilities.
This feature is disabled when `table-disable-incompatibility-warning'
is non-nil.  The warning is done only once per session for each item."
  (unless (and table-disable-incompatibility-warning
	       (not (called-interactively-p 'interactive)))
    (when (and flyspell-mode
	       (not (get 'table-disable-incompatibility-warning 'flyspell)))
      (put 'table-disable-incompatibility-warning 'flyspell t)
      (display-warning 'table
                       "
*** Warning ***

Flyspell minor mode is known to be incompatible with this table
package.  The flyspell version 1.5d at URL `http://kaolin.unice.fr/~serrano'
works better than the previous versions however not fully compatible.

"
                       :warning))))