Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
933f8467
Commit
933f8467
authored
Jul 09, 2006
by
Romain Francoise
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(isearch-yank-line): Let-bind `inhibit-field-text-motion' to t.
parent
5fc5b7e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/isearch.el
lisp/isearch.el
+2
-1
No files found.
lisp/ChangeLog
View file @
933f8467
2006-07-09 Romain Francoise <romain@orebokech.com>
* isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
to t.
2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
* textmodes/fill.el (fill-region-as-paragraph): Refine last change.
...
...
lisp/isearch.el
View file @
933f8467
...
...
@@ -1357,7 +1357,8 @@ might return the position of the end of the line."
"
Pull
rest
of
line
from
buffer
into
search
string.
"
(interactive)
(isearch-yank-internal
(lambda () (line-end-position (if (eolp) 2 1)))))
(lambda () (let ((inhibit-field-text-motion t))
(line-end-position (if (eolp) 2 1))))))
(defun isearch-search-and-update ()
;; Do the search and update the display.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment