GNU bug report logs -
#5666
23.1; please define push-tag-mark in etags.el
Previous Next
Reported by: Richard.Kim1 <at> synopsys.com
Date: Mon, 1 Mar 2010 19:29:02 UTC
Severity: wishlist
Tags: fixed
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
GNU/Emacs defines pop-tag-mark command to go along with find-tag
command for traversing back in cursor movement history. However
GNU/Emacs does not define matching push-tag-mark command. I would
like to request that something like the following be added to etags.el
(defun push-tag-mark ()
"Push the current position to the ring of markers so that
\\[pop-tag-mark] can be used to come back to current position."
(interactive)
(ring-insert find-tag-marker-ring (point-marker)))
I make this request for the following reasons:
- This is a useful command by itself which I use often
- This would be useful for use by tools other than etags, e.g.,
forthcoming cedet tool or even for existing tools, e.g.,
(defadvice imenu
(before use-etags-stack activate compile)
"Push point onto stack used by etags so that \\[pop-tag-mark] can be used."
(push-tag-mark))
(defadvice cscope-call
(before use-etags-stack activate compile)
"Push point onto stack used by etags so that \\[pop-tag-mark] can be used."
(push-tag-mark))
- Since xemacs defines push-tag-mark already, it makes it easier for
tool developers, so that we don't have to add code such as the
following in our own packages:
(unless (fboundp 'push-tag-mark)
(defun push-tag-mark ()
(interactive)
(ring-insert find-tag-marker-ring (point-marker))))
Thanks.
This bug report was last modified 5 years and 229 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.