Commit 9c6fecc2 authored by Dominik Honnef's avatar Dominik Honnef Committed by Alan Donovan

misc/emacs: Make godef-jump behave more like find-tag by supporting pop-tag-mark

Push point to the find-tag marker ring to support pop-tag-mark.

Fixes #5804.

R=adonovan
CC=golang-dev
https://golang.org/cl/11457044
parent f0112825
......@@ -5,7 +5,9 @@
;; license that can be found in the LICENSE file.
(require 'cl)
(require 'etags)
(require 'ffap)
(require 'ring)
(require 'url)
;; XEmacs compatibility guidelines
......@@ -925,6 +927,7 @@ description at POINT."
(message "%s" file))
(t
(push-mark)
(ring-insert find-tag-marker-ring (point-marker))
(godef--find-file-line-column file other-window))))
(file-error (message "Could not run godef binary"))))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment