diff options
author | Glenn Morris <rgm@gnu.org> | 2011-05-29 15:41:06 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-05-29 15:41:06 -0700 |
commit | ed7f1a6c5caaf4159125c08db5d18c5471fdd032 (patch) | |
tree | b1acaafaac9d7cc5fe8ee315cc109d3b5565a1de /doc/lispref/strings.texi | |
parent | 6a3e57bb546b094bfc8ec24a3ec63b2bd4496d65 (diff) | |
parent | 049bcbcba62635103d4d212b3c3cf7dc0ef21f36 (diff) | |
download | emacs-ed7f1a6c5caaf4159125c08db5d18c5471fdd032.tar.gz |
Merge from emacs-23; up to 2010-06-12T11:17:12Z!eliz@gnu.org.
Diffstat (limited to 'doc/lispref/strings.texi')
-rw-r--r-- | doc/lispref/strings.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index d062c215952..05ac40e90c1 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi @@ -828,12 +828,12 @@ is not truncated. @example @group -(format "The word `%7s' actually has %d letters in it." +(format "The word `%7s' has %d letters in it." "foo" (length "foo")) - @result{} "The word ` foo' actually has 3 letters in it." -(format "The word `%7s' actually has %d letters in it." + @result{} "The word ` foo' has 3 letters in it." +(format "The word `%7s' has %d letters in it." "specification" (length "specification")) - @result{} "The word `specification' actually has 13 letters in it." + @result{} "The word `specification' has 13 letters in it." @end group @end example |