diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-09-21 17:49:07 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-09-21 17:49:07 +0000 |
commit | 16feddc402fad45e207560c25e6274de348f0782 (patch) | |
tree | 84a90139dd2f87fdbdc5f42633f5016b3debf61a /lisp/cedet/semantic/mru-bookmark.el | |
parent | af7b5a91b2c7e4f3ee18f72192d7baa572d03735 (diff) | |
download | emacs-16feddc402fad45e207560c25e6274de348f0782.tar.gz |
* help-fns.el (describe-function-1): Call
overload-docstring-extension for mode-local functions.
* cedet/mode-local.el:
* cedet/semantic/mru-bookmark.el:
* cedet/pulse.el: Remove advice.
* cedet/semantic.el: Add autoloads for semantic/idle functions.
Diffstat (limited to 'lisp/cedet/semantic/mru-bookmark.el')
-rw-r--r-- | lisp/cedet/semantic/mru-bookmark.el | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/lisp/cedet/semantic/mru-bookmark.el b/lisp/cedet/semantic/mru-bookmark.el index e1307c68a06..66da681e3b4 100644 --- a/lisp/cedet/semantic/mru-bookmark.el +++ b/lisp/cedet/semantic/mru-bookmark.el @@ -411,29 +411,6 @@ Jumps to the tag and highlights it briefly." (semantic-mrub-visit tagmark) ) -;;; ADVICE -;; -;; Advise some commands to help set tag marks. -;; (defadvice push-mark (around semantic-mru-bookmark activate) -;; "Push a mark at LOCATION with NOMSG and ACTIVATE passed to `push-mark'. -;; If `semantic-mru-bookmark-mode' is active, also push a tag onto -;; the mru bookmark stack." -;; (semantic-mrub-push semantic-mru-bookmark-ring -;; (point) -;; 'mark) -;; ad-do-it) - -;(defadvice set-mark-command (around semantic-mru-bookmark activate) -; "Set this buffer's mark to POS. -;If `semantic-mru-bookmark-mode' is active, also push a tag onto -;the mru bookmark stack." -; (when (and semantic-mru-bookmark-mode (interactive-p)) -; (semantic-mrub-push semantic-mru-bookmark-ring -; (point) -; 'mark)) -; ad-do-it) - - ;;; Debugging ;; (defun semantic-adebug-mrub () |