From: Glenn Morris Date: Fri, 23 Aug 2013 16:50:39 +0000 (-0400) Subject: * lisp/emacs-lisp/package.el (package-buffer-info): Fix message typo. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1593^2~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d96ad42239cbf481c292e750aa8b6fd5a19ddb7e;p=emacs.git * lisp/emacs-lisp/package.el (package-buffer-info): Fix message typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 14af1cfbda9..eec861a1dcd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-08-23 Glenn Morris + + * emacs-lisp/package.el (package-buffer-info): Fix message typo. + 2013-07-27 Glenn Morris * format.el (format-annotate-function): diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 6059f03f999..6c700b68157 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -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)))