mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-21 04:17:35 +00:00
(isearch-text-char-description): Treat TAB as ctl char.
(isearch-text-char-description): Really call text-char-description for ctl chars.
This commit is contained in:
parent
724ecf95f2
commit
9d78ff8be7
1 changed files with 4 additions and 2 deletions
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
|
||||
|
||||
;; |$Date: 1993/11/24 01:22:40 $|$Revision: 1.53 $
|
||||
;; |$Date: 1993/11/26 22:20:23 $|$Revision: 1.55 $
|
||||
|
||||
;; This file is part of GNU Emacs.
|
||||
|
||||
|
|
@ -1365,7 +1365,9 @@ since they have special meaning in a regexp."
|
|||
(make-string 1 (event-to-character c)))))
|
||||
|
||||
(defun isearch-text-char-description (c)
|
||||
(isearch-char-to-string c))
|
||||
(if (and (integerp c) (or (< c ?\ ) (= c ?\^?)))
|
||||
(text-char-description c)
|
||||
(isearch-char-to-string c)))
|
||||
|
||||
(defun isearch-unread (&rest char-or-events)
|
||||
;; General function to unread characters or events.
|
||||
|
|
|
|||
Loading…
Reference in a new issue