f. New active mark and face feature: when enabled, it will highlight the text
inserted by a bracketed paste (the `active region') and the text found by
- incremental and non-incremental history searches.
+ incremental and non-incremental history searches. This is tied to bracketed
+ paste and can be disabled by turning off bracketed paste.
g. Readline sets the mark in several additional commands.
f. New active mark and face feature: when enabled, it will highlight the text
inserted by a bracketed paste (the `active region') and the text found by
- incremental and non-incremental history searches.
+ incremental and non-incremental history searches. This is tied to bracketed
+ paste and can be disabled by turning off bracketed paste.
g. Readline sets the mark in several additional commands.
{
/* If we have a multibyte character, see if it's bound to something that
affects the search. */
- if (cxt->mb[1])
+#if defined (HANDLE_MULTIBYTE)
+ if (MB_CUR_MAX > 1 && rl_byte_oriented == 0 && cxt->mb[1])
f = rl_function_of_keyseq (cxt->mb, cxt->keymap, (int *)NULL);
else
+#endif
{
f = cxt->keymap[c].function;
if (f == rl_do_lowercase_version)