]> git.cameronkatri.com Git - mandoc.git/commitdiff
Tiny optimisation in mandoc_isdelim() check.
authorKristaps Dzonsons <kristaps@bsd.lv>
Thu, 17 Mar 2011 09:18:12 +0000 (09:18 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Thu, 17 Mar 2011 09:18:12 +0000 (09:18 +0000)
mandoc.c

index 67dc1da8a203a29d1ee6a65b09528b4e0c660f87..608e48bfd3548694da9cbdbe5befbc833ac7e959 100644 (file)
--- a/mandoc.c
+++ b/mandoc.c
@@ -1,4 +1,4 @@
-/*     $Id: mandoc.c,v 1.40 2011/03/17 09:16:38 kristaps Exp $ */
+/*     $Id: mandoc.c,v 1.41 2011/03/17 09:18:12 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -549,9 +549,9 @@ mandoc_isdelim(const char *p)
        if ('\\' != p[0])
                return(DELIM_NONE);
 
-       if (0 == strcmp(p, "\\."))
+       if (0 == strcmp(p + 1, "."))
                return(DELIM_CLOSE);
-       if (0 == strcmp(p, "\\*(Ba"))
+       if (0 == strcmp(p + 1, "*(Ba"))
                return(DELIM_MIDDLE);
 
        return(DELIM_NONE);