]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment.
authorDave Love <fx@gnu.org>
Wed, 3 Jul 2002 22:47:00 +0000 (22:47 +0000)
committerDave Love <fx@gnu.org>
Wed, 3 Jul 2002 22:47:00 +0000 (22:47 +0000)
lisp/isearch.el
lisp/simple.el
src/character.h
src/sysdep.c

index a3d85dd636a6064609b3625512a5b6a3c343e148..446675c7b8d0b01cf9b4a7a2eedff1304a89caea 100644 (file)
@@ -235,6 +235,7 @@ Default value, nil, means edit the string instead."
        (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.
index e1d0ad7007e2bd26d095559f8c86846bc8c74cda..36d1ce52c5edf212bc92fdff099665910a6d0e11 100644 (file)
@@ -532,6 +532,7 @@ in *Help* buffer.  See also the command `describe-char-after'."
        (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))
index 35e46e2ff9051d2cba9220ff43b9aa46e3f7e53d..969a3e801db94828ae6bea234ec9ed83e7f99681 100644 (file)
@@ -77,7 +77,7 @@ Boston, MA 02111-1307, USA.  */
 /* 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)
 
index f560e9d7cf2cea7ea07110dbb8e7f3c34b117916..ab9398938a81c68c63f24129693ab6d136647cbf 100644 (file)
@@ -3082,6 +3082,8 @@ seed_random (arg)
      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