emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/isearch.el


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/lisp/isearch.el
Date: Thu, 17 Mar 2005 14:22:25 -0500

Index: emacs/lisp/isearch.el
diff -c emacs/lisp/isearch.el:1.258 emacs/lisp/isearch.el:1.259
*** emacs/lisp/isearch.el:1.258 Wed Mar 16 07:33:26 2005
--- emacs/lisp/isearch.el       Thu Mar 17 19:22:23 2005
***************
*** 1458,1465 ****
          ;; `stack' now refers the most recent valid regexp that is not at
          ;; all optional in its last term.  Now dig one level deeper and find
          ;; what matched before that.
!         (let ((last-other-end (or (isearch-other-end-state (car previous))
!                                   isearch-barrier)))
            (goto-char (if isearch-forward
                           (max last-other-end isearch-barrier)
                         (min last-other-end isearch-barrier)))
--- 1458,1467 ----
          ;; `stack' now refers the most recent valid regexp that is not at
          ;; all optional in its last term.  Now dig one level deeper and find
          ;; what matched before that.
!         (let ((last-other-end
!                (or (and (car previous)
!                         (isearch-other-end-state (car previous)))
!                    isearch-barrier)))
            (goto-char (if isearch-forward
                           (max last-other-end isearch-barrier)
                         (min last-other-end isearch-barrier)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]