emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/go-mode eb8cf16 386/495: refactor/rename: emacs: package.e


From: ELPA Syncer
Subject: [nongnu] elpa/go-mode eb8cf16 386/495: refactor/rename: emacs: package.el compatibility changes
Date: Sat, 7 Aug 2021 09:05:53 -0400 (EDT)

branch: elpa/go-mode
commit eb8cf168ddfdabf42b9604ab42698a76f5cdd9f8
Author: Konstantin Shaposhnikov <k.shaposhnikov@gmail.com>
Commit: Dominik Honnef <dominik@honnef.co>

    refactor/rename: emacs: package.el compatibility changes
    
    Change-Id: Ia37db2bfbe02015eb38f13fc7fc58a9aec9c551c
    Reviewed-on: https://go-review.googlesource.com/15527
    Reviewed-by: Alan Donovan <adonovan@google.com>
---
 .../refactor/rename/{rename.el => go-rename.el}    | 37 ++++++++++++++--------
 1 file changed, 24 insertions(+), 13 deletions(-)

diff --git a/rename_import/refactor/rename/rename.el 
b/rename_import/refactor/rename/go-rename.el
similarity index 83%
rename from rename_import/refactor/rename/rename.el
rename to rename_import/refactor/rename/go-rename.el
index 139bb47..a311e07 100644
--- a/rename_import/refactor/rename/rename.el
+++ b/rename_import/refactor/rename/go-rename.el
@@ -1,16 +1,25 @@
-;;; Copyright 2014 The Go Authors. All rights reserved.
-;;; Use of this source code is governed by a BSD-style
-;;; license that can be found in the LICENSE file.
-;;;
-;;; Integration of the 'gorename' tool into Emacs.
-;;;
-;;; To install:
-;;; % go get golang.org/x/tools/cmd/gorename
-;;; % go build golang.org/x/tools/cmd/gorename
-;;; % mv gorename $HOME/bin/         # or elsewhere on $PATH
-;;;
-;;; The go-rename-command variable can be customized to specify an
-;;; alternative location for the installed command.
+;;; go-rename.el --- Integration of the 'gorename' tool into Emacs.
+
+;; Copyright 2014 The Go Authors. All rights reserved.
+;; Use of this source code is governed by a BSD-style
+;; license that can be found in the LICENSE file.
+
+;; Version: 0.1
+;; Package-Requires: ((go-mode "1.3.1"))
+;; Keywords: tools
+
+;;; Commentary:
+
+;; To install:
+
+;; % go get golang.org/x/tools/cmd/gorename
+;; % go build golang.org/x/tools/cmd/gorename
+;; % mv gorename $HOME/bin/         # or elsewhere on $PATH
+
+;; The go-rename-command variable can be customized to specify an
+;; alternative location for the installed command.
+
+;;; Code:
 
 (require 'compile)
 (require 'go-mode)
@@ -94,3 +103,5 @@ the `gorename' tool. With FORCE, call `gorename' with the
                             (buffer-substring (point-min) (point-max))))
 
 (provide 'go-rename)
+
+;;; go-rename.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]