Updated license.

This commit is contained in:
larstvei 2014-11-14 13:21:18 +01:00
parent 9216930082
commit 32345488ae
2 changed files with 23 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#try.el #Try
This is a package that allow you to try out other Emacs packages, without This is a package that allow you to try out other Emacs packages, without
installing them. If you install a package (using `package-install`) you have installing them. If you install a package (using `package-install`) you have
@ -8,4 +8,4 @@ evaluate the buffer. This extension essentially automates this process, by
excepting a URL to a plain-text `.el`-file, downloading the content and excepting a URL to a plain-text `.el`-file, downloading the content and
evaluate it. evaluate it.
Too bad you won't be able to try out `try.el` with `try.el`. Unfortunately, you won't be able to try Try with `M-x try`.

21
try.el
View File

@ -1,4 +1,25 @@
;;; -*- lexical-binding: t -*- ;;; -*- lexical-binding: t -*-
;;; try.el --- Try out Emacs packages.
;; Copyright (C) 2014 Lars Tveito.
;; Author: Lars Tveito <larstvei@ifi.uio.no>
;; Contains code from GNU Emacs <https://www.gnu.org/software/emacs/>,
;; released under the GNU General Public License version 3 or later.
;; Try is free software; you can redistribute it and/or modify it under the
;; terms of the GNU General Public License as published by the Free Software
;; Foundation; either version 3, or (at your option) any later version.
;;
;; Try is distributed in the hope that it will be useful, but WITHOUT ANY
;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
;; details.
;;
;; You should have received a copy of the GNU General Public License along
;; with Try. If not, see <http://www.gnu.org/licenses/>.
(require 'package) (require 'package)
(require 'url) (require 'url)