Stephen Berman <[EMAIL PROTECTED]> writes: > 1. emacs -Q > 2. Type the following three lines in an empty buffer: > test > test > test > 3. Now put the cursor at the beginning of the second line and type this: > `M-: (add-text-properties (point) (point-max) '(field test))' > 4. Now type `C-s C-y'. The minibuffer contains the prompt "I-search:" > but the line is not yanked into the search string, and in fact nothing > else happens at all as long as you keep typing `C-y'.
Yes, this is because `isearch-yank-line' uses the `line-end-position' function, which doesn't cross fields. In the context of `isearch-yank-line', we want to fetch the line, not the field, so this is a bug. I have installed a fix. Thanks, -- Romain Francoise <[EMAIL PROTECTED]> | The sea! the sea! the open it's a miracle -- http://orebokech.com/ | sea! The blue, the fresh, the | ever free! --Bryan W. Procter _______________________________________________ emacs-pretest-bug mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
