* lisp/emacs-lisp/package.el (package-buffer-info): Fix message typo.

This commit is contained in:
Glenn Morris 2013-08-23 12:50:39 -04:00
parent d4c5b3745e
commit d96ad42239
2 changed files with 5 additions and 1 deletions

View file

@ -956,7 +956,7 @@ error. If there is a package, narrow the buffer to the file's
boundaries."
(goto-char (point-min))
(unless (re-search-forward "^;;; \\([^ ]*\\)\\.el ---[ \t]*\\(.*?\\)[ \t]*\\(-\\*-.*-\\*-[ \t]*\\)?$" nil t)
(error "Packages lacks a file header"))
(error "Package lacks a file header"))
(let ((file-name (match-string-no-properties 1))
(desc (match-string-no-properties 2))
(start (line-beginning-position)))