diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-05-03 13:18:08 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-05-03 13:18:08 -0400 |
commit | b28d44d4226497c4b2582bc15a59fc817eb3ce0a (patch) | |
tree | 770381b71db4575fb3b7e52c0ab71a6666c42149 /lisp/emacs-lisp | |
parent | 5eaa7ec09860c779ca7c9af4fbda673a1046c362 (diff) | |
download | emacs-b28d44d4226497c4b2582bc15a59fc817eb3ce0a.tar.gz |
* lisp/emacs-lisp/package.el (package-buffer-info): Fix thinko
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 16b2218da26..0f68f0e8041 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -1196,7 +1196,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")) + (unless (search-forward (concat ";;; " file-name ".el ends here") nil t) (lwarn '(package package-format) :warning "Package lacks a terminating comment")) ;; Try to include a trailing newline. |