Re: SEE ALSO fails

2021-11-01 Thread Tadziu Hoffmann
> If the proposal is to remove See Also's that aren't installed, I > could not be more against that idea. That just makes the system > harder to learn. I agree. Also, some of the manual pages reference Bell Labs Technical Reports or other papers that are hardly ever installed on any system. N

Re: [PATCH] *.man: Break URIs at points specified by the Chicago Style

2021-11-01 Thread G. Branden Robinson
Hi, Ralph, At 2021-10-23T10:46:32+0100, Ralph Corderoy wrote: > Hi Branden, > > > But in fact, trailing slashes on URIs are semantically > > significant[1] > ... > > [1] > > https://stackoverflow.com/questions/5948659/when-should-i-use-a-trailing-slash-in-my-url/ > > StackOverflow isn't

Re: [PATCH] *.man: Break URIs at points specified by the Chicago Style

2021-11-01 Thread G. Branden Robinson
Hi, James! At 2021-10-18T10:05:55-0400, James K. Lowden wrote: > Is there a way to say, "set this URL all on one line if at all > possible, else break at these specific points"? Sort of a ".ne" for > horizontal space? Yes, there is! [man]: Try to minimize the number of times a URI is broken whe

Re: Git, where zombie branches shamble again

2021-11-01 Thread G. Branden Robinson
Hi, Larry! At 2021-10-24T18:53:52-0700, Larry McVoy wrote: > On Mon, Oct 25, 2021 at 11:58:55AM +1100, G. Branden Robinson wrote: > > Since I am now accused four times over of rewriting history, and > > moreover of violating an "absolute taboo", I must insist upon the > > presentation of particula

Re: Sed failure in contrib/sboxes on MacOS

2021-11-01 Thread Douglas McIlroy
> [POSIX] doesn't say anything about #! in shell scripts. Of course not. #! has nothing to do with the shell. It is interpreted by exec. Doug

pic doesn't center when i use a macro

2021-11-01 Thread Marc Chantreux
hello groffers, I wrote the following code to illustrate the DOD model encapsulation. sadly: the label of the layers are not centred. it seems to be relative to the fact i use a function as it works fine when i replace label_for(layer) by a simple string like box width w height margin \

Re: pic doesn't center when i use a macro

2021-11-01 Thread T. Kurt Bond
While I don't have any suggestions as how to fix this, I did try it with Heirloom troff, and it seems to have the same unwanted non-centering result as groff. On Mon, Nov 1, 2021 at 3:52 PM Marc Chantreux wrote: > hello groffers, > > I wrote the following code to illustrate the DOD model encapsu

Re: pic doesn't center when i use a macro

2021-11-01 Thread Marc Chantreux
Le Mon, Nov 01, 2021 at 04:12:46PM -0400, T. Kurt Bond a écrit : > While I don't have any suggestions as how to fix this, I did try it with > Heirloom troff, and it seems to have the same unwanted non-centering result > as groff. thanks a lot for confirming. i guess the next step would be to gdb p

an officially maintained version of dformat outthere ?

2021-11-01 Thread Marc Chantreux
hello groffers, Long time ago, i download this pdf %K dformat data format CSTR142 %A Jon L. Bentley %C Bell Labs %D April 1988 %T DFORMAT - A Program for Typesetting Data Formats %R CSTR #142 %O 142.ps.gz I started to use the original implementation available here: https://github.com/sathla

Re: Git, where zombie branches shamble again

2021-11-01 Thread Keith Marshall
On 01/11/2021 14:01, G. Branden Robinson wrote: > At 2021-10-24T18:53:52-0700, Larry McVoy wrote: >> On Mon, Oct 25, 2021 at 11:58:55AM +1100, G. Branden Robinson wrote: >>> Since I am now accused four times over of rewriting history, and >>> moreover of violating an "absolute taboo", I must insist

Re: [groff] 05/14: tbl(1): Say decimal "separator", not "point".

2021-11-01 Thread Keith Marshall
On 01/11/2021 13:19, G. Branden Robinson wrote: > gbranden pushed a commit to branch master > in repository groff. > > commit a0ec5ffd258b9f54daa46b88471ec837e8213ad1 > Author: Bjarni Ingi Gislason > AuthorDate: Sun Oct 31 00:42:09 2021 + > > tbl(1): Say decimal "separator", not "point".

Re: pic doesn't center when i use a macro

2021-11-01 Thread Tadziu Hoffmann
> I can do something more manual but i really would like to take advantage > of the expressivity of pic. Any other comment is also warmly welcome. It looks like pic has no string variables, and the "if" works at the statement level, not expression level. To provide a somewhat constructive answe

Re: Git, where zombie branches shamble again

2021-11-01 Thread G. Branden Robinson
At 2021-11-01T22:30:28+, Keith Marshall via Groff-commit wrote: > On 01/11/2021 14:01, G. Branden Robinson wrote: > > At 2021-10-24T18:53:52-0700, Larry McVoy wrote: > >> On Mon, Oct 25, 2021 at 11:58:55AM +1100, G. Branden Robinson > >> wrote: > >>> Since I am now accused four times over of re

Re: pic doesn't center when i use a macro

2021-11-01 Thread Douglas McIlroy
Remember that macros work by substitution. So each line of label_for becomes a separate line in the macro-expanded program. A label alone on a line gets plotted at the current point, which in this case is last box.e. (The macro definition begins with an empty line. If it didn't, then the case-0 li