Mercurial > hg > xemacs-beta
comparison lisp/isearch-mode.el @ 2828:a25c824ed558
[xemacs-hg @ 2005-06-26 18:04:49 by aidan]
Rename the ascii-character property, support more keysyms.
author | aidan |
---|---|
date | Sun, 26 Jun 2005 18:05:05 +0000 |
parents | 7dc50bbd7a39 |
children | da6da82d7d79 |
comparison
equal
deleted
inserted
replaced
2827:936a6576c655 | 2828:a25c824ed558 |
---|---|
1811 | 1811 |
1812 ;; Portability functions to support various Emacs versions. | 1812 ;; Portability functions to support various Emacs versions. |
1813 | 1813 |
1814 (defun isearch-char-to-string (c) | 1814 (defun isearch-char-to-string (c) |
1815 (if (eventp c) | 1815 (if (eventp c) |
1816 (make-string 1 (event-to-character c nil nil t)) | 1816 (make-string 1 (event-to-character c)) |
1817 (make-string 1 c))) | 1817 (make-string 1 c))) |
1818 | 1818 |
1819 ;(defun isearch-text-char-description (c) | 1819 ;(defun isearch-text-char-description (c) |
1820 ; (isearch-char-to-string c)) | 1820 ; (isearch-char-to-string c)) |
1821 | 1821 |