Function: copyright-start-point

copyright-start-point is a byte-compiled function defined in copyright.el.gz.

Signature

(copyright-start-point)

Documentation

Return point-min or point-max, depending on copyright-at-end-flag.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/copyright.el.gz
(defun copyright-start-point ()
  "Return `point-min' or `point-max', depending on `copyright-at-end-flag'."
  (if copyright-at-end-flag
      (point-max)
    (point-min)))