gitlog-to-changelog: Improve output of pdf documentation.
authorCollin Funk <collin.funk1@gmail.com>
Sat, 20 Jul 2024 02:24:17 +0000 (19:24 -0700)
committerCollin Funk <collin.funk1@gmail.com>
Sat, 20 Jul 2024 02:24:17 +0000 (19:24 -0700)
* doc/gitlog-to-changelog.texi (gitlog-to-changelog): Reformat code to
use shorter lines and avoid overfull hboxes.

ChangeLog
doc/gitlog-to-changelog.texi

index c5abb91e4585823ac82876fb701fff57c94351a9..50353eb63b3730e8994103adb5c4f041fcfe49f7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-07-19  Collin Funk  <collin.funk1@gmail.com>
+
+       gitlog-to-changelog: Improve output of pdf documentation.
+       * doc/gitlog-to-changelog.texi (gitlog-to-changelog): Reformat code to
+       use shorter lines and avoid overfull hboxes.
+
 2024-07-19  Bruno Haible  <bruno@clisp.org>
 
        doc: Reference a newer ISO C23 draft.
index 6f1cabdcaf08d31fa111c52d0d5ba95e81355926..8d3907329588035aefd58348fc00c7b2917424a1 100644 (file)
@@ -51,10 +51,10 @@ time zone each individual commit was made in you can use the
 dist-hook: gen-ChangeLog
 .PHONY: gen-ChangeLog
 gen-ChangeLog:
-        $(AM_V_GEN)if test -e .git; then                                 \
-          $(top_srcdir)/build-aux/gitlog-to-changelog --commit-timezone  \
-            > $(distdir)/ChangeLog.tmp &&                                \
-          mv -f $(distdir)/ChangeLog.tmp $(distdir)/ChangeLog;           \
+        $(AM_V_GEN)if test -e .git; then                       \
+          $(top_srcdir)/build-aux/gitlog-to-changelog          \
+            --commit-timezone > $(distdir)/ChangeLog.tmp &&    \
+          mv -f $(distdir)/ChangeLog.tmp $(distdir)/ChangeLog; \
         fi
 @end example