Function: copyright-offset-too-large-p

copyright-offset-too-large-p is a byte-compiled function defined in copyright.el.gz.

Signature

(copyright-offset-too-large-p)

Documentation

Return non-nil if point is too far from the edge of the buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/copyright.el.gz
(defun copyright-offset-too-large-p ()
  "Return non-nil if point is too far from the edge of the buffer."
  (when copyright-limit
    (if copyright-at-end-flag
	(< (point) (- (point-max) copyright-limit))
      (> (point) (+ (point-min) copyright-limit)))))