]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/package.el (package-buffer-info): Fix last change
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 26 May 2023 15:18:49 +0000 (11:18 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 26 May 2023 15:18:49 +0000 (11:18 -0400)
The code that follows expects point to be at/near the end of the buffer.

lisp/emacs-lisp/package.el

index e906c73ecab219f3dd234b29ddcecf9ca56de383..69595601bc8eb8e2f8be833f6dc925012d37b287 100644 (file)
@@ -1199,7 +1199,7 @@ boundaries."
     ;; the earliest in version 31.1.  The idea is to phase out the
     ;; requirement for a "footer line" without unduly impacting users
     ;; on earlier Emacs versions.  See Bug#26490 for more details.
-    (unless (search-forward (concat ";;; " file-name ".el ends here") nil t)
+    (unless (search-forward (concat ";;; " file-name ".el ends here") nil 'move)
       (lwarn '(package package-format) :warning
              "Package lacks a terminating comment"))
     ;; Try to include a trailing newline.