summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2013-12-30 23:37:43 +0100
committerMarc Glisse <marc.glisse@inria.fr>2013-12-30 23:37:43 +0100
commiteb6d4607ef0513f854a45445fb6fc97050d5552f (patch)
treea20429dd03ef68aa9e4a946deabf4eb6504dd1ef /doc
parent7d37e0e27c458d0a12e7c246ecc3b87dbc3afcb4 (diff)
downloadgmp-eb6d4607ef0513f854a45445fb6fc97050d5552f.tar.gz
Break long line in the doc to avoid an overfull hbox in the PDF.
Diffstat (limited to 'doc')
-rw-r--r--doc/gmp.texi5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/gmp.texi b/doc/gmp.texi
index ef438ebaa..06bf620b7 100644
--- a/doc/gmp.texi
+++ b/doc/gmp.texi
@@ -10436,7 +10436,10 @@ evaluating it,
@example
struct __gmp_binary_plus
@{
- static void eval(mpf_t f, const mpf_t g, const mpf_t h) @{ mpf_add(f, g, h); @}
+ static void eval(mpf_t f, const mpf_t g, const mpf_t h)
+ @{
+ mpf_add(f, g, h);
+ @}
@};
@end example