[BACK]Return to mdoc.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mdoc.c between version 1.8 and 1.12

version 1.8, 2008/12/29 12:19:41 version 1.12, 2008/12/30 19:06:03
Line 100  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
Line 100  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { macro_text, MDOC_CALLABLE }, /* Ad */          { macro_text, MDOC_CALLABLE }, /* Ad */
         { NULL, 0 }, /* An */          { NULL, 0 }, /* An */
         { macro_text, MDOC_CALLABLE }, /* Ar */          { macro_text, MDOC_CALLABLE }, /* Ar */
         { NULL, 0 }, /* Cd */          { macro_constant, MDOC_QUOTABLE }, /* Cd */
         { macro_text, MDOC_CALLABLE }, /* Cm */          { macro_text, MDOC_CALLABLE }, /* Cm */
         { macro_text, MDOC_CALLABLE }, /* Dv */          { macro_text, MDOC_CALLABLE }, /* Dv */
         { macro_text, MDOC_CALLABLE }, /* Er */          { macro_text, MDOC_CALLABLE }, /* Er */
         { macro_text, MDOC_CALLABLE }, /* Ev */          { macro_text, MDOC_CALLABLE }, /* Ev */
         { NULL, 0 }, /* Ex */          { macro_constant_argv, 0 }, /* Ex */
         { macro_text, MDOC_CALLABLE }, /* Fa */          { macro_text, MDOC_CALLABLE }, /* Fa */
         { NULL, 0 }, /* Fd */          { NULL, 0 }, /* Fd */
         { macro_text, MDOC_CALLABLE }, /* Fl */          { macro_text, MDOC_CALLABLE }, /* Fl */
         { NULL, 0 }, /* Fn */          { macro_text, MDOC_CALLABLE | MDOC_QUOTABLE }, /* Fn */
         { macro_text, 0 }, /* Ft */          { macro_text, 0 }, /* Ft */
         { macro_text, MDOC_CALLABLE }, /* Ic */          { macro_text, MDOC_CALLABLE }, /* Ic */
         { NULL, 0 }, /* In */          { NULL, 0 }, /* In */
         { macro_text, MDOC_CALLABLE }, /* Li */          { macro_text, MDOC_CALLABLE }, /* Li */
         { NULL, 0 }, /* Nd */          { macro_constant, 0 }, /* Nd */
         { NULL, 0 }, /* Nm */          { NULL, 0 }, /* Nm */
         { NULL, 0 }, /* Op */          { NULL, 0 }, /* Op */
         { NULL, 0 }, /* Ot */          { NULL, 0 }, /* Ot */
         { macro_text, MDOC_CALLABLE }, /* Pa */          { macro_text, MDOC_CALLABLE }, /* Pa */
         { NULL, 0 }, /* Rv */          { macro_constant_argv, 0 }, /* Rv */
         { NULL, 0 }, /* St */          { NULL, 0 }, /* St */
         { macro_text, MDOC_CALLABLE }, /* Va */          { macro_text, MDOC_CALLABLE }, /* Va */
         { macro_text, MDOC_CALLABLE }, /* Vt */          { macro_text, MDOC_CALLABLE }, /* Vt */
Line 138  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
Line 138  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { NULL, 0 }, /* Ac */          { NULL, 0 }, /* Ac */
         { NULL, 0 }, /* Ao */          { NULL, 0 }, /* Ao */
         { macro_scoped_pline, MDOC_CALLABLE }, /* Aq */          { macro_scoped_pline, MDOC_CALLABLE }, /* Aq */
         { NULL, 0 }, /* At */          { macro_constant, 0 }, /* At */
         { NULL, 0 }, /* Bc */          { NULL, 0 }, /* Bc */
         { NULL, 0 }, /* Bf */          { NULL, 0 }, /* Bf */
         { NULL, 0 }, /* Bo */          { NULL, 0 }, /* Bo */
Line 173  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
Line 173  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { NULL, 0 }, /* So */          { NULL, 0 }, /* So */
         { macro_scoped_pline, MDOC_CALLABLE }, /* Sq */          { macro_scoped_pline, MDOC_CALLABLE }, /* Sq */
         { NULL, 0 }, /* Sm */          { NULL, 0 }, /* Sm */
         { NULL, 0 }, /* Sx */          { macro_text, MDOC_CALLABLE }, /* Sx */
         { NULL, 0 }, /* Sy */          { macro_text, MDOC_CALLABLE }, /* Sy */
         { macro_text, MDOC_CALLABLE }, /* Tn */          { macro_text, MDOC_CALLABLE }, /* Tn */
         { macro_constant_delimited, 0 }, /* Ux */          { macro_constant_delimited, 0 }, /* Ux */
         { NULL, 0 }, /* Xc */          { NULL, 0 }, /* Xc */
Line 185  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
Line 185  const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
         { NULL, 0 }, /* Oc */          { NULL, 0 }, /* Oc */
         { NULL, 0 }, /* Bk */          { NULL, 0 }, /* Bk */
         { NULL, 0 }, /* Ek */          { NULL, 0 }, /* Ek */
         { NULL, 0 }, /* Bt */          { macro_constant, 0 }, /* Bt */
         { NULL, 0 }, /* Hf */          { macro_constant, 0 }, /* Hf */
         { NULL, 0 }, /* Fr */          { macro_obsolete, 0 }, /* Fr */
         { NULL, 0 }, /* Ud */          { macro_constant, 0 }, /* Ud */
 };  };
   
 const   char * const *mdoc_macronames = __mdoc_macronames;  const   char * const *mdoc_macronames = __mdoc_macronames;

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.12

CVSweb