diff options
author | Johan Bockgård <bojohan@gnu.org> | 2008-03-25 14:41:44 +0000 |
---|---|---|
committer | Johan Bockgård <bojohan@gnu.org> | 2008-03-25 14:41:44 +0000 |
commit | 98db7a382a424fb0644ab96baf7982f1ef8342bf (patch) | |
tree | a2f88d77d262502deac9d6eec3292ae9feb7b0ae /lisp/info.el | |
parent | 97bef88eb52fb1ff9ddd581eb0ec596c69c2d837 (diff) | |
download | emacs-98db7a382a424fb0644ab96baf7982f1ef8342bf.tar.gz |
(Info-isearch-search): Always return point.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el index 5a0c4ce6611..f291bad2a95 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1834,8 +1834,8 @@ If DIRECTION is `backward', search in the reverse direction." (unless isearch-forward 'backward)) (Info-search (if isearch-regexp string (regexp-quote string)) bound noerror count - (unless isearch-forward 'backward)) - (point))) + (unless isearch-forward 'backward))) + (point)) (let ((isearch-search-fun-function nil)) (isearch-search-fun)))) |