summaryrefslogtreecommitdiffstatshomepage
path: root/macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-01-07 15:57:14 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-01-07 15:57:14 +0000
commit764912ffd1d25c58186eba0c2f70ff0de3d08a7b (patch)
treebca4c3661a4f3d86a317eeb6a08f1729b87002c2 /macro.c
parent9dd355694618bcd06487072ef69080b1afa3dead (diff)
downloadmandoc-764912ffd1d25c58186eba0c2f70ff0de3d08a7b.tar.gz
mandoc-764912ffd1d25c58186eba0c2f70ff0de3d08a7b.tar.zst
mandoc-764912ffd1d25c58186eba0c2f70ff0de3d08a7b.zip
Added line numbering.
Diffstat (limited to 'macro.c')
-rw-r--r--macro.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/macro.c b/macro.c
index 6cc28953..f7395c8b 100644
--- a/macro.c
+++ b/macro.c
@@ -1,4 +1,4 @@
-/* $Id: macro.c,v 1.25 2009/01/07 15:53:00 kristaps Exp $ */
+/* $Id: macro.c,v 1.26 2009/01/07 15:57:14 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -314,7 +314,7 @@ macro_close_explicit(MACRO_PROT_ARGS)
return(0);
flushed = 1;
}
- if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
+ if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
return(0);
break;
}
@@ -405,7 +405,7 @@ macro_text(MACRO_PROT_ARGS)
return(0);
}
mdoc_argv_free(argc, argv);
- if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
+ if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
return(0);
if (ppos > 1)
return(1);
@@ -504,7 +504,7 @@ macro_scoped(MACRO_PROT_ARGS)
continue;
}
- if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
+ if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
return(0);
break;
}
@@ -565,7 +565,7 @@ macro_scoped_line(MACRO_PROT_ARGS)
continue;
}
- if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
+ if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
return(0);
break;
}
@@ -645,7 +645,7 @@ macro_constant_scoped(MACRO_PROT_ARGS)
mdoc_body_alloc(mdoc, ppos, tok);
mdoc->next = MDOC_NEXT_CHILD;
}
- if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
+ if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
return(0);
break;
}
@@ -751,7 +751,7 @@ macro_constant_delimited(MACRO_PROT_ARGS)
if ( ! flushed && ! rewind_elem(mdoc, ppos, tok))
return(0);
flushed = 1;
- if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))
+ if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
return(0);
break;
}