# HG changeset patch # User Stephen J. Turnbull # Date 1356342047 -32400 # Node ID c65b0329894b09c08423739508d277548a0b1a00 # Parent ad35a0cd95f55ae78abe9f52055a6bf492d1f1a6 Fix last patch. diff -r ad35a0cd95f5 -r c65b0329894b src/ChangeLog --- a/src/ChangeLog Mon Dec 24 15:12:52 2012 +0900 +++ b/src/ChangeLog Mon Dec 24 18:40:47 2012 +0900 @@ -1,3 +1,8 @@ +2012-12-24 Stephen J. Turnbull + + (Fself_insert_command): Oops, Aidan renamed make_int to make_fixnum. + Adjust my patch to match. Thank you, Mr. Buildbot (and matsl! :-) + 2012-12-24 Stephen J. Turnbull * cmds.c (Fself_insert_command): diff -r ad35a0cd95f5 -r c65b0329894b src/cmds.c --- a/src/cmds.c Mon Dec 24 15:12:52 2012 +0900 +++ b/src/cmds.c Mon Dec 24 18:40:47 2012 +0900 @@ -334,7 +334,7 @@ /* It is sometimes useful to specify `self-insert-commmand' in Lisp code. We may as well as all that to be done with default = 1. */ - count = NILP (count) ? make_int(1) : count; + count = NILP (count) ? make_fixnum(1) : count; /* Can't insert more than most-positive-fixnum characters, the buffer won't hold that many. */ check_integer_range (count, Qzero, make_fixnum (MOST_POSITIVE_FIXNUM));