Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Jan 1999 07:07:01 +0900 (JST)
From:      Kaneda Hiloshi <vanitas@ma3.seikyou.ne.jp>
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Cc:        vanitas@ma3.seikyou.ne.jp
Subject:   docs/9352: [send-pr]: wrong macro names in groff_[ms|mm|mmse].7
Message-ID:  <199901062207.HAA00339@hiloshi.seikyou.ne.jp>

next in thread | raw e-mail | index | archive | help

>Number:         9352
>Category:       docs
>Synopsis:       wrong macro names in groff_[ms|mm|mmse].7
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-doc
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          doc-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jan  6 14:10:00 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Kanenda
>Release:        FreeBSD 2.2.1-RELEASE i386
>Organization:
FreeBSD jp-man project
>Environment:

/src/contrib/groff/tmac/groff_ms.man?rev=1.1.1.1

/src/contrib/groff/mm/groff_mm.man?rev=1.1.1.1
.\" $Id: groff_mm.man,v 1.27 1995/04/24 05:37:46 jh Exp $

/src/contrib/groff/mm/groff_mmse.man?rev=1.1.1.1
.\" $Id: groff_mmse.man,v 1.27 1995/04/24 05:37:46 jh Exp $

>Description:

 groff_[ms|mm|mmse].man include their macro names as
m@TMAC_S_PREFIX@s, m@TMAC_M_PREFIX@m, or m@TMAC_M_PREFIX@mse,
which are supposed to be replaced with ms, mm, or mmse
respectively at installation.
 But these get changed to mms, mmm, or mmmmse, because
@TMAC_S_PREFIX@ and @TMAC_M_PREFIX@ are replaced with s and m.

>How-To-Repeat:

man 7 groff_ms
man 7 groff_mm
man 7 groff_mmse

>Fix:

These will be fixed by changing line 45 and 46
in /src/gnu/usr.bin/groff/Makefile.cfg :

   tmac_s_prefix=s
   tmac_m_prefix=m

to:

   tmac_s_prefix=
   tmac_m_prefix=

, or erasing appending [s|m] to @TMAC_[S|M]_PREFIX@
in each man page.  I don't know which is to be done.
Anyway, m@TMAC_M_PREFIX@mm at line 496 in groff_mm.man must be a typo.

Also see the same problem report:
  http://www.freebsd.org/cgi/query-pr.cgi?pr=5693

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199901062207.HAA00339>