* src/editfns.c (Fformat_message): Fix doc to match current behavior.

This commit is contained in:
Paul Eggert 2016-08-30 19:54:35 -07:00 committed by Paul Eggert
parent 6f40b8b23a
commit f24011b4d1

View file

@ -3906,10 +3906,9 @@ DEFUN ("format-message", Fformat_message, Sformat_message, 1, MANY, 0,
The first argument is a format control string.
The other arguments are substituted into it to make the result, a string.
This acts like `format', except it also replaces each left single
quotation mark () and grave accent (\\=`) by a left quote, and each
right single quotation mark () and apostrophe (\\=') by a right quote.
The left and right quote replacement characters are specified by
This acts like `format', except it also replaces each grave accent (\\=`)
by a left quote, and each apostrophe (\\=') by a right quote. The left
and right quote replacement characters are specified by
`text-quoting-style'.
usage: (format-message STRING &rest OBJECTS) */)