diff -Naur mdocml-1.13.4-a/main.c mdocml-1.13.4-b/main.c --- mdocml-1.13.4-a/main.c 2016-07-09 14:15:54.000000000 +0300 +++ mdocml-1.13.4-b/main.c 2016-07-09 17:19:16.138769535 +0300 @@ -1055,11 +1055,11 @@ break; } - /* For more(1) and less(1), use the tag file. */ + /* For less(1), use the tag file. */ if ((cmdlen = strlen(argv[0])) >= 4) { cp = argv[0] + cmdlen - 4; - if (strcmp(cp, "less") == 0 || strcmp(cp, "more") == 0) { + if (strcmp(cp, "less") == 0) { argv[argc++] = mandoc_strdup("-T"); argv[argc++] = tag_files->tfn; }