From 18e08bf7a2b62a19ab0cb018c133907dfab78560 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Fri, 17 Aug 2007 22:18:54 +0000 Subject: [PATCH] (copyright-limit): Fix sense typo in defsubst. --- lisp/emacs-lisp/copyright.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el index fc6ff213c6f..cc392a36f04 100644 --- a/lisp/emacs-lisp/copyright.el +++ b/lisp/emacs-lisp/copyright.el @@ -91,8 +91,7 @@ When this is `function', only ask when called non-interactively." "String representing the current year.") (defsubst copyright-limit () ; re-search-forward BOUND - (or (not copyright-limit) - (+ (point) copyright-limit))) + (and copyright-limit (+ (point) copyright-limit))) (defun copyright-update-year (replace noquery) (when -- 2.39.2