and does a nonincremental search.)"
:type 'boolean)
-(defcustom search-whitespace-regexp (purecopy "[ \t]")
+(defcustom search-whitespace-regexpx (purecopy "[ \t]")
"If non-nil, regular expression to match a sequence of whitespace chars.
When you enter a space or spaces in the incremental search, it
will match any sequence matched by this regexp. As an exception,
;; don't forward char in isearch-repeat
(setq isearch-just-started t)
(goto-char (point-min))
- (isearch-repeat 'forward arg)))
+ (let ((isearch-repeat-on-direction-change nil))
+ (isearch-repeat 'forward arg))))
(defun isearch-end-of-buffer (&optional arg)
"Go to the last occurrence of the current search string.
(isearch-beginning-of-buffer (abs arg))
(setq isearch-just-started t)
(goto-char (point-max))
- (isearch-repeat 'backward arg)))
+ (let ((isearch-repeat-on-direction-change nil))
+ (isearch-repeat 'backward arg))))
\f
;;; Toggles for `isearch-regexp-function' and `search-default-mode'.