* lisp/emacs-lisp/package.el (package-archives): Doc fix re riskiness.
authorGlenn Morris <rgm@gnu.org>
Tue, 6 Dec 2011 08:31:42 +0000 (00:31 -0800)
committerGlenn Morris <rgm@gnu.org>
Tue, 6 Dec 2011 08:31:42 +0000 (00:31 -0800)
lisp/ChangeLog
lisp/emacs-lisp/package.el

index c222302..894a66b 100644 (file)
@@ -1,3 +1,7 @@
+2011-12-06  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
+
 2011-12-06  Chong Yidong  <cyd@gnu.org>
 
        * progmodes/cc-fonts.el (c-annotation-face): Use defface.
index 8417aa8..a151303 100644 (file)
 
 ;;; ToDo:
 
+;; - a trust mechanism, since compiling a package can run arbitrary code.
+;;   For example, download package signatures and check that they match.
 ;; - putting info dirs at the start of the info path means
 ;;   users see a weird ordering of categories.  OTOH we want to
 ;;   override later entries.  maybe emacs needs to enforce
@@ -224,7 +226,10 @@ Each element has the form (ID . LOCATION).
  LOCATION specifies the base location for the archive.
   If it starts with \"http:\", it is treated as a HTTP URL;
   otherwise it should be an absolute directory name.
-  (Other types of URL are currently not supported.)"
+  (Other types of URL are currently not supported.)
+
+Only add locations that you trust, since fetching and installing
+a package can run arbitrary code."
   :type '(alist :key-type (string :tag "Archive name")
                 :value-type (string :tag "URL or directory name"))
   :risky t