diff options
Diffstat (limited to 'lisp/emacs-lisp/copyright.el')
-rw-r--r-- | lisp/emacs-lisp/copyright.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el index d2e4891acee..9da370a725d 100644 --- a/lisp/emacs-lisp/copyright.el +++ b/lisp/emacs-lisp/copyright.el @@ -120,7 +120,7 @@ When this is `function', only ask when called non-interactively." (re-search-forward regexp bound noerror count))) (defun copyright-start-point () - "Return point-min or point-max, depending on `copyright-at-end-flag'." + "Return `point-min' or `point-max', depending on `copyright-at-end-flag'." (if copyright-at-end-flag (point-max) (point-min))) @@ -135,7 +135,7 @@ When this is `function', only ask when called non-interactively." (defun copyright-find-copyright () "Return non-nil if a copyright header suitable for updating is found. The header must match `copyright-regexp' and `copyright-names-regexp', if set. -This function sets the match-data that `copyright-update-year' uses." +This function sets the match data that `copyright-update-year' uses." (widen) (goto-char (copyright-start-point)) ;; In case the regexp is rejected. This is useful because |