diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/info.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2d420370d14..493c8a4216c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-03-25 Johan Bockg$(Q)[(Brd <bojohan@gnu.org> + + * info.el (Info-isearch-search): Always return point. + 2008-03-23 Andreas Schwab <schwab@suse.de> * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]: Fix diff --git a/lisp/info.el b/lisp/info.el index 66ca4b61000..56b7e3e7fd0 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1829,8 +1829,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)))) |