Update README and documentation

This commit is contained in:
Lars Tveito 2016-02-26 16:28:59 +01:00
parent 6b5ea53b83
commit 624259a1a4
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ Try is a package that allows you to try out Emacs packages without installing
them. If you pass a URL to a plain text `.el`-file it evaluates the content,
without storing the file.
Packages from ELPA will temporarily be stored in `/tmp/` by default.
Packages from ELPA will be stored in a temporary directory by default.
## Installation

2
try.el
View File

@ -37,7 +37,7 @@
(require 'url)
(defvar try-tmp-dir (make-temp-file "try" t)
"The default place packages to try out is /tmp/.")
"A temporary directory for storing packages.")
(defun try-raw-link-p (url)
"Returns non-nil if this looks like an URL to a .el file."