summaryrefslogtreecommitdiff
path: root/doc/lispref/strings.texi
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2011-05-29 13:18:46 -0400
committerChong Yidong <cyd@stupidchicken.com>2011-05-29 13:18:46 -0400
commit049bcbcba62635103d4d212b3c3cf7dc0ef21f36 (patch)
tree5b09006846727d818678497c81568f8d7f9523cb /doc/lispref/strings.texi
parentc92a1e54c44d3939a1ac57b45def3424d0e4cf13 (diff)
downloademacs-049bcbcba62635103d4d212b3c3cf7dc0ef21f36.tar.gz
Tweaks to lisp manual to remove over/underflows in printed version.
* help.texi (Accessing Documentation): * display.texi (Pixel Specification): * processes.texi (Serial Ports, Serial Ports): * nonascii.texi (Character Properties, Default Coding Systems): * text.texi (Changing Properties, Special Properties): * windows.texi (Window Start and End): * modes.texi (SMIE Indentation Example, SMIE Tricks): * keymaps.texi (Searching Keymaps, Tool Bar): * minibuf.texi (Basic Completion): * compile.texi (Eval During Compile): * strings.texi (Formatting Strings): Tweaks to avoid overflowing 7x9 paper in printed manual. * lists.texi (Sets And Lists): Fix misplaced text.
Diffstat (limited to 'doc/lispref/strings.texi')
-rw-r--r--doc/lispref/strings.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index 925c92050e4..87b9f4368fb 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -829,12 +829,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