melpa / package-build

Tools for assembling a package archive
https://github.com/melpa/melpa
25 stars 34 forks source link

Fix package-build--ensure-ends-here-line #64

Closed SqrtMinusOne closed 2 years ago

SqrtMinusOne commented 2 years ago

After https://github.com/melpa/package-build/commit/f9dfe309e5135119145c224e59d165e7b1d9179f package-build--ensure-ends-here-line started adding unnecessary ^ before ;;; <package>.el ends here, like this:

;;; org-journal-tags.el ends here

^;;; org-journal-tags.el ends here

Which creates an error with ^ referencing a free variable.

This PR fixes that.

tarsius commented 2 years ago

Thanks!