From 51250a676d11f807c18fab4bd2a50bba55883cc1 Mon Sep 17 00:00:00 2001
From: Roland McGrath <roland@redhat.com>
Date: Fri, 8 Jul 1994 18:33:15 +0000
Subject: [PATCH] Split a shell command line in @example to avoid overfull
 hbox.

---
 make.texinfo | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/make.texinfo b/make.texinfo
index c088e5fa..26859ded 100644
--- a/make.texinfo
+++ b/make.texinfo
@@ -2581,7 +2581,8 @@ called @file{@var{name}.d} from a C source file called @file{@var{name}.c}:
 @example
 @group
 %.d: %.c
-        $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< | sed '\''s/$*.o/& $@@/g'\'' > $@@'
+        $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< \
+                      | sed '\''s/$*.o/& $@@/g'\'' > $@@'
 @end group
 @end example