diff options
author | Romain Francoise <romain@orebokech.com> | 2005-10-20 16:53:11 +0000 |
---|---|---|
committer | Romain Francoise <romain@orebokech.com> | 2005-10-20 16:53:11 +0000 |
commit | 344d2d87b28937f5182047e92f6d7838d3ff35e2 (patch) | |
tree | 9e6e6590938ed0d4772a8d939879d4bd14bc890f /lisp | |
parent | bd43c9908bff23f59212ab26edf2613979ad29d8 (diff) | |
download | emacs-344d2d87b28937f5182047e92f6d7838d3ff35e2.tar.gz |
(occur-engine): Add follow-link property.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/replace.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7d4edcef727..d866a6f9280 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -108,6 +108,8 @@ 2005-10-20 Romain Francoise <romain@orebokech.com> + * replace.el (occur-engine): Add follow-link property. + * font-core.el (font-lock-mode): Doc fix. 2005-10-20 Kim F. Storm <storm@cua.dk> diff --git a/lisp/replace.el b/lisp/replace.el index e2562ed3469..2d79754b4f0 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -1157,7 +1157,8 @@ See also `multi-occur'." (insert "-------\n")) (add-text-properties beg end - `(occur-target ,marker help-echo "mouse-2: go to this occurrence"))))) + `(occur-target ,marker follow-link t + help-echo "mouse-2: go to this occurrence"))))) (goto-char endpt)) (if endpt (progn |