# HG changeset patch # User Jim Blandy # Date 713628501 0 # Node ID 6df04dcbd2e9414f957cd5bd65c5fa725a998891 # Parent eb74884fc95a831ac8b1c79c6061854d7dd4ac94 * minibuf.c (Fcompleting_read): Stop subtracting one from the starting position, so this function lives up to its doc string, which I think specifies an okay way to work. diff -r eb74884fc95a -r 6df04dcbd2e9 src/minibuf.c --- a/src/minibuf.c Wed Aug 12 14:05:56 1992 +0000 +++ b/src/minibuf.c Wed Aug 12 14:08:21 1992 +0000 @@ -847,7 +847,7 @@ { CHECK_NUMBER (position, 0); /* Convert to distance from end of input. */ - pos = XINT (position) - 1 - XSTRING (init)->size; + pos = XINT (position) - XSTRING (init)->size; } }