diff options
author | Juri Linkov <juri@jurta.org> | 2005-12-04 02:34:33 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-12-04 02:34:33 +0000 |
commit | d5ba8197bb42f638ea34be66954002b1623cb46b (patch) | |
tree | 09c421c06ef6f8fe8b2cf7ed02213317ccc7b374 /lisp/emacs-lisp/easy-mmode.el | |
parent | cc793355dc8b8b9c2d75e8554b03c0026f035ed6 (diff) | |
download | emacs-d5ba8197bb42f638ea34be66954002b1623cb46b.tar.gz |
(easy-mmode-define-navigation): Put `definition-name' properties on the
constructed function names next-sym and prev-sym.
Diffstat (limited to 'lisp/emacs-lisp/easy-mmode.el')
-rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 710c26e0c6c..9d118cd5351 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -515,6 +515,7 @@ found, do widen first and then call NARROWFUN with no args after moving." (unless (pos-visible-in-window-p endpt nil t) (recenter '(0)))))) ,re-narrow-maybe))) + (put ',next-sym 'definition-name ',base) (defun ,prev-sym (&optional count) ,(format "Go to the previous COUNT'th %s" (or name base-name)) (interactive) @@ -524,7 +525,8 @@ found, do widen first and then call NARROWFUN with no args after moving." ,check-narrow-maybe (unless (re-search-backward ,re nil t count) (error "No previous %s" ,name)) - ,re-narrow-maybe)))))) + ,re-narrow-maybe))) + (put ',prev-sym 'definition-name ',base)))) (provide 'easy-mmode) |