From 57ea8c3a3f8b7270a4ecbe813b4778f1f21f0a51 Mon Sep 17 00:00:00 2001 From: Phil Hagelberg Date: Mon, 12 Jul 2010 22:11:06 -0700 Subject: [PATCH 2/5] 2010-07-12 Phil Hagelberg * emacs-lisp/package.el: Fix a bug preventing the first two packages in the list from being installed. --- lisp/emacs-lisp/package.el | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 0278149..4dbae56 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -1393,7 +1393,6 @@ Note that after installing packages you will want to restart Emacs." (interactive) (goto-char (point-min)) - (forward-line 2) (while (not (eobp)) (let ((cmd (char-after)) (pkg-name (package-menu-get-package)) -- 1.7.0.4