diff options
-rwxr-xr-x | man/dummy-man | 2 | ||||
-rw-r--r-- | man/local.mk | 2 | ||||
-rw-r--r-- | src/system.h | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/man/dummy-man b/man/dummy-man index dca2b6784..bf31912b2 100755 --- a/man/dummy-man +++ b/man/dummy-man @@ -69,5 +69,5 @@ The full documentation for is maintained as a Texinfo manual, which should be accessible on your system via the command .IP -.B info coreutils $bs(aq$progname invocation$bs(aq +.B info $bs(aq(coreutils) $progname invocation$bs(aq END diff --git a/man/local.mk b/man/local.mk index f4b213f7e..f2d1357b6 100644 --- a/man/local.mk +++ b/man/local.mk @@ -102,7 +102,7 @@ man/dynamic-deps.mk: Makefile --source='$(PACKAGE_STRING)' \ --include=$(srcdir)/man/$$name.x \ --output=$$t/$$name.1 $$t/$$argv \ - --info-page='coreutils \(aq'$$name' invocation\(aq' \ + --info-page='\(aq(coreutils) '$$name' invocation\(aq' \ && sed \ -e 's|$*\.td/||g' \ -e '/For complete documentation/d' \ diff --git a/src/system.h b/src/system.h index 162446c11..00180cb02 100644 --- a/src/system.h +++ b/src/system.h @@ -582,7 +582,8 @@ emit_ancillary_info (void) last_component (program_name)); } printf (_("For complete documentation, run: " - "info coreutils '%s invocation'\n"), last_component (program_name)); + "info '(coreutils) %s invocation'\n"), + last_component (program_name)); } static inline void |