]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/editfns.c (Fformat_message): Fix doc to match current behavior.
authorPaul Eggert <eggert@Penguin.CS.UCLA.EDU>
Wed, 31 Aug 2016 02:54:35 +0000 (19:54 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 31 Aug 2016 02:55:07 +0000 (19:55 -0700)
src/editfns.c

index a46e33bee9ed9095784d40937b038cf6928d1451..20cb3a80c7b15cbe0de34edea86827fe9f7cc63c 100644 (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)  */)