aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Malabarba2015-02-01 20:28:21 -0200
committerArtur Malabarba2015-02-01 20:28:21 -0200
commit0ade763b7498496eb8f6fac9d136a23be052d1b7 (patch)
treed8af285bd1045edcdc62a57304a9313cca4d8901
parente2f0f263df89a156ff5b4b05e3b3aae457eb38a9 (diff)
downloademacs-0ade763b7498496eb8f6fac9d136a23be052d1b7.tar.gz
emacs-0ade763b7498496eb8f6fac9d136a23be052d1b7.zip
emacs-lisp/package.el (package-selected-packages): Fix :type
-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 742aced3a7c..e3d654d5dfe 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12015-02-01 Artur Malabarba <bruce.connor.am@gmail.com>
2
3 * emacs-lisp/package.el (package-selected-packages): Fix :type
4
12015-02-01 Thierry Volpiatto <thierry.volpiatto@gmail.com> 52015-02-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2 6
3 * emacs-lisp/package.el: Don't allow deleting dependencies. 7 * emacs-lisp/package.el: Don't allow deleting dependencies.
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index db8d8685574..4fa77b6d20f 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -342,7 +342,7 @@ which packages are no more needed.
342You can use it to (re)install packages on other machines 342You can use it to (re)install packages on other machines
343by running `package-user-selected-packages-install'." 343by running `package-user-selected-packages-install'."
344 :group 'package 344 :group 'package
345 :type '(repeat (choice symbol))) 345 :type '(repeat symbol))
346 346
347(defvar package--default-summary "No description available.") 347(defvar package--default-summary "No description available.")
348 348