branch: master commit eed4cb9caf42822c06cffa9de2dc555f9a339909 Author: rocky <ro...@gnu.org> Commit: rocky <ro...@gnu.org>
Get ready for an ELPA release. --- Makefile.am | 6 +--- THANKS | 2 +- loc-changes.el | 34 ++++++++------------ make-check-filter.rb => test/make-check-filter.rb | 0 4 files changed, 16 insertions(+), 26 deletions(-) diff --git a/Makefile.am b/Makefile.am index 99b64db..f391799 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,10 +9,6 @@ EXTRA_DIST = $(lisp_files) $(test_files) README.md THANKS test_files := $(wildcard test/test-*.el) -#: Run all tests without bloated output -check-short: - $(MAKE) check 2>&1 | ruby make-check-filter.rb - if MAINTAINER_MODE CL = ChangeLog @@ -28,7 +24,7 @@ test: check #: Run all tests without bloated output check-short: - $(MAKE) check 2>&1 | ruby make-check-filter.rb + $(MAKE) check 2>&1 | ruby test/make-check-filter.rb check: $(MAKE) -C test $@ diff --git a/THANKS b/THANKS index 7408d2a..e336992 100644 --- a/THANKS +++ b/THANKS @@ -1 +1 @@ -Lars Anderson - Melapa packaging, among other things +Lars Anderson - Melpa packaging, among other things diff --git a/loc-changes.el b/loc-changes.el index 417f2fe..bcc7ed1 100644 --- a/loc-changes.el +++ b/loc-changes.el @@ -1,25 +1,24 @@ -;;; loc-changes.el --- Helps users and programs keep track of positions even after buffer changes. +;;; loc-changes.el --- keep track of positions even after buffer changes -;; Author: Rocky Bernstein -;; Version: 1.1 +;; Copyright (C) 2015 Free Software Foundation, Inc + +;; Author: Rocky Bernstein <ro...@gnu.org> +;; Version: 1.2 ;; URL: http://github.com/rocky/emacs-loc-changes ;; Compatibility: GNU Emacs 24.x -;; Copyright (C) 2013-2014 Rocky Bernstein <ro...@gnu.org> - -;; This program 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 of the -;; License, or (at your option) any later version. +;; This program 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 of the License, or +;; (at your option) any later version. -;; This program 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. +;; This program 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 this program. If not, see -;; <http://www.gnu.org/licenses/>. +;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;;; Commentary: @@ -34,9 +33,6 @@ ;; Another use might be in a compilation buffer for errors and ;; warnings which refer to file and line positions. -;; Should be available via Melpa. - - ;;; Code: (make-variable-buffer-local 'loc-changes-alist) @@ -222,5 +218,3 @@ NO-UPDATE is set, no mark is added." ) (provide 'loc-changes) - -;;; loc-changes.el ends here diff --git a/make-check-filter.rb b/test/make-check-filter.rb similarity index 100% rename from make-check-filter.rb rename to test/make-check-filter.rb