]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_term.c
bugfix: .Tg must be ignored completely in these output modes
[mandoc.git] / man_term.c
index d9ee14ad22ba433ad172f8abd8a385f9bdaadda7..553063dced2befb95c4b2f607a5586994990727a 100644 (file)
@@ -1,7 +1,7 @@
-/*     $Id: man_term.c,v 1.232 2019/07/23 17:53:35 schwarze Exp $ */
+/*     $Id: man_term.c,v 1.233 2020/01/20 10:37:15 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2010-2015, 2017-2019 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2010-2015, 2017-2020 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
@@ -1180,12 +1180,12 @@ tag_man(struct termp *p, struct roff_node *n)
 
        assert(n->type == ROFFT_TEXT);
        cp = n->string;
-       prio = 1;
+       prio = TAG_STRONG;
        for (;;) {
                switch (*cp) {
                case ' ':
                case '\t':
-                       prio = INT_MAX;
+                       prio = TAG_WEAK;
                        /* FALLTHROUGH */
                case '-':
                        cp++;