Mercurial > emacs
changeset 88832:1918306a80b1
Comment.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 03 Jul 2002 22:47:00 +0000 |
parents | 883ff81d531d |
children | 329570b3e59d |
files | lisp/isearch.el lisp/simple.el src/character.h src/sysdep.c |
diffstat | 4 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/isearch.el Wed Jul 03 22:37:38 2002 +0000 +++ b/lisp/isearch.el Wed Jul 03 22:47:00 2002 +0000 @@ -235,6 +235,7 @@ (char-table-p (nth 1 map)) (error "The initialization of isearch-mode-map must be updated")) ;; Make all multibyte characters search for themselves. + ;; Fixme: is this range right? (set-char-table-range (nth 1 map) (cons #x100 #x2FFFFF) 'isearch-printing-char) ;; Make function keys, etc, exit the search.
--- a/lisp/simple.el Wed Jul 03 22:37:38 2002 +0000 +++ b/lisp/simple.el Wed Jul 03 22:47:00 2002 +0000 @@ -532,6 +532,7 @@ (if (or (not coding) (eq (coding-system-type coding) t)) (setq coding default-buffer-file-coding-system)) + ;; Fixme: can we actually have invalid chars now? (if (not (char-valid-p char)) (setq encoding-msg (format "(0%o, %d, 0x%x, invalid)" char char char))
--- a/src/character.h Wed Jul 03 22:37:38 2002 +0000 +++ b/src/character.h Wed Jul 03 22:47:00 2002 +0000 @@ -77,7 +77,7 @@ /* Nonzero iff X is a character. */ #define CHARACTERP(x) (NATNUMP (x) && XFASTINT (x) <= MAX_CHAR) -/* Nozero iff C is valid as a charater code. GENERICP is not used +/* Nonzero iff C is valid as a character code. GENERICP is not used now. */ #define CHAR_VALID_P(c, genericp) ((unsigned) (c) <= MAX_CHAR)