=================================================================== RCS file: /cvs/mandoc/roff.c,v retrieving revision 1.400 retrieving revision 1.401 diff -u -p -r1.400 -r1.401 --- mandoc/roff.c 2023/10/24 20:53:12 1.400 +++ mandoc/roff.c 2025/01/03 16:34:12 1.401 @@ -1,6 +1,6 @@ -/* $Id: roff.c,v 1.400 2023/10/24 20:53:12 schwarze Exp $ */ +/* $Id: roff.c,v 1.401 2025/01/03 16:34:12 schwarze Exp $ */ /* - * Copyright (c) 2010-2015, 2017-2023 Ingo Schwarze + * Copyright (c) 2010-2015, 2017-2024 Ingo Schwarze * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any @@ -3062,6 +3062,8 @@ roff_getregro(const struct roff *r, const char *name) return 24; case 'j': /* Always adjust left margin only. */ return 0; + case 'l': /* Fixed line width for DocBook. */ + return 78 * 24; case 'T': /* Some output device is always defined. */ return 1; case 'V': /* Fixed vertical resolution. */