]> git.eshelyaron.com Git - emacs.git/commitdiff
(Formatting Strings): Document '+' flag.
authorAndreas Schwab <schwab@suse.de>
Fri, 16 Feb 2007 13:21:44 +0000 (13:21 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 16 Feb 2007 13:21:44 +0000 (13:21 +0000)
lispref/strings.texi

index 4a8531cd6ce7f9fd9ff6e85968c47b33b057c322..207624f96426159c638de52ddd7eeae8fe726d2e 100644 (file)
@@ -887,9 +887,11 @@ specification characters.
 Immediately after the @samp{%} and before the optional width and
 precision, you can put certain ``flag'' characters.
 
-A space character inserts a space for positive numbers (otherwise
-nothing is inserted for positive numbers).  This flag is ignored
-except for @samp{%d}, @samp{%e}, @samp{%f}, @samp{%g}.
+A space character inserts a space for positive numbers, a plus character
+inserts a plus sign (otherwise nothing is inserted for positive
+numbers).  These flags are ignored except for @samp{%d}, @samp{%e},
+@samp{%f}, @samp{%g}, and if both flags are present the space is
+ignored.
 
 The flag @samp{#} indicates ``alternate form.''  For @samp{%o} it
 ensures that the result begins with a 0.  For @samp{%x} and @samp{%X}