# HG changeset patch # User Richard M. Stallman # Date 779599912 0 # Node ID 67b1905bc9a25d7779ee72854d9ca1d9007a43a3 # Parent 5b4ba06e910f38069c5a0cd420b6e45edc1ffc26 (Fcompleting_read): Doc fix. diff -r 5b4ba06e910f -r 67b1905bc9a2 src/minibuf.c --- a/src/minibuf.c Thu Sep 15 03:21:56 1994 +0000 +++ b/src/minibuf.c Thu Sep 15 03:31:52 1994 +0000 @@ -922,9 +922,13 @@ TABLE is an alist whose elements' cars are strings, or an obarray.\n\ PREDICATE limits completion to a subset of TABLE.\n\ See `try-completion' for more details on completion, TABLE, and PREDICATE.\n\ +\n\ If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless\n\ the input is (or completes to) an element of TABLE or is null.\n\ If it is also not t, Return does not exit if it does non-null completion.\n\ +If the input is null, `completing-read' returns nil,\n\ + regardless of the value of REQUIRE-MATCH.\n\ +\n\ If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.\n\ If it is (STRING . POSITION), the initial input\n\ is STRING, but point is placed POSITION characters into the string.\n\