diff options
author | Glenn Morris <rgm@gnu.org> | 2013-08-23 12:50:39 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-08-23 12:50:39 -0400 |
commit | d96ad42239cbf481c292e750aa8b6fd5a19ddb7e (patch) | |
tree | ca57325cac6a0abb4386286bcda8f790a6414b20 /lisp/emacs-lisp | |
parent | d4c5b3745e0113908a72771c7ebd173b12749efa (diff) | |
download | emacs-d96ad42239cbf481c292e750aa8b6fd5a19ddb7e.tar.gz emacs-d96ad42239cbf481c292e750aa8b6fd5a19ddb7e.tar.bz2 emacs-d96ad42239cbf481c292e750aa8b6fd5a19ddb7e.zip |
* lisp/emacs-lisp/package.el (package-buffer-info): Fix message typo.
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 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))) |