aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2013-08-23 12:50:39 -0400
committerGlenn Morris2013-08-23 12:50:39 -0400
commitd96ad42239cbf481c292e750aa8b6fd5a19ddb7e (patch)
treeca57325cac6a0abb4386286bcda8f790a6414b20 /lisp
parentd4c5b3745e0113908a72771c7ebd173b12749efa (diff)
downloademacs-d96ad42239cbf481c292e750aa8b6fd5a19ddb7e.tar.gz
emacs-d96ad42239cbf481c292e750aa8b6fd5a19ddb7e.zip
* lisp/emacs-lisp/package.el (package-buffer-info): Fix message typo.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/package.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 14af1cfbda9..eec861a1dcd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-08-23 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
4
12013-07-27 Glenn Morris <rgm@gnu.org> 52013-07-27 Glenn Morris <rgm@gnu.org>
2 6
3 * format.el (format-annotate-function): 7 * 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
956boundaries." 956boundaries."
957 (goto-char (point-min)) 957 (goto-char (point-min))
958 (unless (re-search-forward "^;;; \\([^ ]*\\)\\.el ---[ \t]*\\(.*?\\)[ \t]*\\(-\\*-.*-\\*-[ \t]*\\)?$" nil t) 958 (unless (re-search-forward "^;;; \\([^ ]*\\)\\.el ---[ \t]*\\(.*?\\)[ \t]*\\(-\\*-.*-\\*-[ \t]*\\)?$" nil t)
959 (error "Packages lacks a file header")) 959 (error "Package lacks a file header"))
960 (let ((file-name (match-string-no-properties 1)) 960 (let ((file-name (match-string-no-properties 1))
961 (desc (match-string-no-properties 2)) 961 (desc (match-string-no-properties 2))
962 (start (line-beginning-position))) 962 (start (line-beginning-position)))