From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 1/2] gnu: Add emacs-goto-chg. Date: Wed, 12 Oct 2016 23:00:26 +0000 Message-ID: <20161012230027.13576-2-ng0@we.make.ritual.n0.is> References: <20161012230027.13576-1-ng0@we.make.ritual.n0.is> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32897) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buSW5-0003Ni-Oy for guix-devel@gnu.org; Wed, 12 Oct 2016 19:00:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1buSW0-0003dC-PH for guix-devel@gnu.org; Wed, 12 Oct 2016 19:00:52 -0400 Received: from aibo.runbox.com ([91.220.196.211]:58707) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1buSW0-0003cm-Dg for guix-devel@gnu.org; Wed, 12 Oct 2016 19:00:48 -0400 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1buSVx-0002au-7z for guix-devel@gnu.org; Thu, 13 Oct 2016 01:00:45 +0200 In-Reply-To: <20161012230027.13576-1-ng0@we.make.ritual.n0.is> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/emacs.scm (emacs-goto-chg): New variable. --- gnu/packages/emacs.scm | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1b345db..f04b71d 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -12,7 +12,7 @@ ;;; Copyright © 2016 David Thompson ;;; Copyright © 2016 Matthew Jordan ;;; Copyright © 2016 Roel Janssen -;;; Copyright © 2016 ng0 +;;; Copyright © 2016 ng0 ;;; Copyright © 2016 Alex Griffin ;;; Copyright © 2016 Nicolas Goaziou ;;; Copyright © 2016 Alex Vong @@ -2981,6 +2981,30 @@ Lua programing language}.") news items, openrc and runscripts.") (license license:gpl2+))) +(define-public emacs-goto-chg + (package + (name "emacs-goto-chg") + (version "20131228.659") + (source + (origin + (method url-fetch) + (uri (string-append + "http://melpa.org/packages/goto-chg-" + version ".el")) + (sha256 + (base32 + "1763qs6xprbb86bsxs4sh35rdcnb3v1zam4pc2akkd4wimg83k2l")))) + (build-system emacs-build-system) + ;; This is correct, the source/www is a wiki. + (home-page "http://www.emacswiki.org/emacs/goto-chg.el") + (synopsis "Go to last change") + (description + "Goto-Chg goes to the point of the most recent edit in the +buffer. When repeated, go to the second most recent edit, etc. +Negative argument, C-u -, for reverse direction. Works by +looking into buffer-undo-list to find points of edit.") + (license license:gpl3+))) + (define-public emacs-writegood-mode (package (name "emacs-writegood-mode") -- 2.10.1