From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: More accurately represent cells containing horizontal lines in Date: Tue, 11 Jan 2022 23:54:35 -0500 (EST) [thread overview] Message-ID: <3363fd1e36f122a4@mandoc.bsd.lv> (raw) Log Message: ----------- More accurately represent cells containing horizontal lines in -T tree output. In particular, do not represent "_" as "-", and distinguish "_" from "\_" and "=" from "\=". Output tweak following a related question from Ted Bullock <tbullock at comlore dot com>. Modified Files: -------------- mandoc: tree.c Revision Data ------------- Index: tree.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/tree.c,v retrieving revision 1.91 retrieving revision 1.92 diff -Ltree.c -Ltree.c -u -p -r1.91 -r1.92 --- tree.c +++ tree.c @@ -1,7 +1,7 @@ /* $Id$ */ /* * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> - * Copyright (c) 2013-2015, 2017-2021 Ingo Schwarze <schwarze@openbsd.org> + * Copyright (c) 2013-2015, 2017-2022 Ingo Schwarze <schwarze@openbsd.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -509,12 +509,16 @@ print_span(const struct tbl_span *sp, in putchar('x'); } switch (dp->pos) { - case TBL_DATA_HORIZ: case TBL_DATA_NHORIZ: - putchar('-'); + putchar('\\'); + /* FALLTHROUGH */ + case TBL_DATA_HORIZ: + putchar('_'); break; - case TBL_DATA_DHORIZ: case TBL_DATA_NDHORIZ: + putchar('\\'); + /* FALLTHROUGH */ + case TBL_DATA_DHORIZ: putchar('='); break; default: -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv
reply other threads:[~2022-01-12 4:54 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=3363fd1e36f122a4@mandoc.bsd.lv \ --to=schwarze@mandoc.bsd.lv \ --cc=source@mandoc.bsd.lv \ --subject='Re: mandoc: More accurately represent cells containing horizontal lines in' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).