]> git.cameronkatri.com Git - mandoc.git/blobdiff - tbl_data.c
preconv_encode() can take a const input buffer;
[mandoc.git] / tbl_data.c
index 3be667995b99bd6226301b224d2af43842ec19db..40b756a05e1aace8082f9eea83c898abf6e7a148 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: tbl_data.c,v 1.40 2015/04/19 20:35:20 schwarze Exp $ */
+/*     $Id: tbl_data.c,v 1.41 2015/10/06 18:32:20 schwarze Exp $ */
 /*
  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011, 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -134,10 +134,10 @@ tbl_cdata(struct tbl_node *tbl, int ln, const char *p, int pos)
                        pos++;
                        while (p[pos] != '\0')
                                getdata(tbl, tbl->last_span, ln, p, &pos);
-                       return(1);
+                       return 1;
                } else if (p[pos] == '\0') {
                        tbl->part = TBL_PART_DATA;
-                       return(1);
+                       return 1;
                }
 
                /* Fallthrough: T} is part of a word. */
@@ -157,7 +157,7 @@ tbl_cdata(struct tbl_node *tbl, int ln, const char *p, int pos)
                mandoc_msg(MANDOCERR_TBLDATA_SPAN, tbl->parse,
                    ln, pos, dat->string);
 
-       return(0);
+       return 0;
 }
 
 static struct tbl_span *
@@ -178,7 +178,7 @@ newspan(struct tbl_node *tbl, int line, struct tbl_row *rp)
                dp->prev->next = dp;
        tbl->last_span = dp;
 
-       return(dp);
+       return dp;
 }
 
 void