]> code.delx.au - gnu-emacs/commitdiff
* lisp/emacs-lisp/package.el (package-buffer-info): Fix message typo.
authorGlenn Morris <rgm@gnu.org>
Fri, 23 Aug 2013 16:50:39 +0000 (12:50 -0400)
committerGlenn Morris <rgm@gnu.org>
Fri, 23 Aug 2013 16:50:39 +0000 (12:50 -0400)
lisp/ChangeLog
lisp/emacs-lisp/package.el

index 14af1cfbda9ffa5f3fc597f4eb39f858e973241c..eec861a1dcd021c675c75a2b0473569374d2c2a4 100644 (file)
@@ -1,3 +1,7 @@
+2013-08-23  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/package.el (package-buffer-info): Fix message typo.
+
 2013-07-27  Glenn Morris  <rgm@gnu.org>
 
        * format.el (format-annotate-function):
index 6059f03f9993b3b163021f3d708893a2966ea2e8..6c700b681576d6666f2b3cc4cd526426fe6f5abd 100644 (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)))