# HG changeset patch # User Dave Love # Date 1025736420 0 # Node ID 1918306a80b137e0a90f4142bf980b585a4c30c4 # Parent 883ff81d531dadfde33b19c75976228579b09831 Comment. diff -r 883ff81d531d -r 1918306a80b1 lisp/isearch.el --- 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. diff -r 883ff81d531d -r 1918306a80b1 lisp/simple.el --- 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)) diff -r 883ff81d531d -r 1918306a80b1 src/character.h --- 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) diff -r 883ff81d531d -r 1918306a80b1 src/sysdep.c --- a/src/sysdep.c Wed Jul 03 22:37:38 2002 +0000 +++ b/src/sysdep.c Wed Jul 03 22:47:00 2002 +0000 @@ -3082,6 +3082,8 @@ long arg; { #ifdef HAVE_RANDOM + /* Fixme: needs __USE_XOPEN_EXTENDED defined to be picked up from + GNU stdlib.h. */ srandom ((unsigned int)arg); #else # ifdef HAVE_LRAND48