Function: kotl-mode:skip-filling-p

kotl-mode:skip-filling-p is a byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:skip-filling-p INTERACTIVE-FLAG)

Documentation

Return t if filling is to be skipped, or nil.

This can be due to a no-fill attribute or with point in a table.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:skip-filling-p (interactive-flag)
  "Return t if filling is to be skipped, or nil.
This can be due to a no-fill attribute or with point in a table."
  (not (cond ((and (fboundp #'org-at-table-p) (org-at-table-p))
	      (when interactive-flag
		(beep)
		(message "Filling is disabled within tables")
		nil))
	     ((kcell-view:get-attr 'no-fill)
	      (when interactive-flag
		(beep)
		(message "Current cell has a `do not fill' attribute")
		nil))
	     (t))))