]> git.eshelyaron.com Git - emacs.git/commitdiff
(status_message): Pass Faset index argument as a lisp object, so as to work
authorKen Raeburn <raeburn@raeburn.org>
Sat, 20 Jun 2009 23:23:55 +0000 (23:23 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Sat, 20 Jun 2009 23:23:55 +0000 (23:23 +0000)
with USE_LISP_UNION_TYPE.

src/ChangeLog
src/process.c

index db8fb52a478e5153d7327501c6725b9d097d6cfa..4ae24ee851c07b93141ac9c5cde9517e07b33cb4 100644 (file)
@@ -1,3 +1,8 @@
+2009-06-20  Ken Raeburn  <raeburn@raeburn.org>
+
+       * process.c (status_message): Pass Faset index argument as a lisp
+       object, so as to work with USE_LISP_UNION_TYPE.
+
 2009-06-19  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * coding.c (Ffind_coding_systems_region_internal):
index 08030c944df4165c5eb4c76b2d88f644ec7804f4..2fdb2c2cbb07ac043423c09d6d784adc719e260c 100644 (file)
@@ -479,7 +479,7 @@ status_message (p)
          c1 = STRING_CHAR ((char *) SDATA (string), 0);
          c2 = DOWNCASE (c1);
          if (c1 != c2)
-           Faset (string, 0, make_number (c2));
+           Faset (string, make_number (0), make_number (c2));
        }
       string2 = build_string (coredump ? " (core dumped)\n" : "\n");
       return concat2 (string, string2);