mirror of
https://github.com/larstvei/Try.git
synced 2024-11-26 03:28:31 +00:00
Updated license.
This commit is contained in:
parent
9216930082
commit
32345488ae
@ -1,4 +1,4 @@
|
||||
#try.el
|
||||
#Try
|
||||
|
||||
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
|
||||
@ -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
|
||||
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
21
try.el
@ -1,4 +1,25 @@
|
||||
;;; -*- 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 'url)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user