emacs-devel
[Top][All Lists]
Advanced

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

Re: isearch-yank-char


From: Karl Fogel
Subject: Re: isearch-yank-char
Date: 30 Apr 2004 12:34:14 -0500
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

Juri Linkov <address@hidden> writes:
> The current implementation of C-b is:
> 
> (defun isearch-del-char ()
>   "Discard last character and move point back.
> If there is no previous character, just beep."
>   (interactive)
>   (if (equal isearch-string "")
>       (ding)
>     (setq isearch-string (substring isearch-string 0 -1)
>           isearch-message (mapconcat 'isearch-text-char-description
>                                      isearch-string "")))
>   (isearch-search-and-update))

Thanks!  I'll try it out.

Is this your full patch?  If there's more, post it & I'll test with
that (i.e., including the keybindings and anything else).




reply via email to

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