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

Diff for /mandoc/Attic/mdoc_action.c between version 1.53 and 1.54

version 1.53, 2010/04/06 11:33:00 version 1.54, 2010/05/08 07:30:19
Line 44  struct actions {
Line 44  struct actions {
   
 static  int       concat(struct mdoc *, char *,  static  int       concat(struct mdoc *, char *,
                         const struct mdoc_node *, size_t);                          const struct mdoc_node *, size_t);
 static  inline int order_rs(int);  static  inline int order_rs(enum mdoct);
   
 static  int       post_ar(POST_ARGS);  static  int       post_ar(POST_ARGS);
 static  int       post_at(POST_ARGS);  static  int       post_at(POST_ARGS);
Line 196  static const struct actions mdoc_actions[MDOC_MAX] = {
Line 196  static const struct actions mdoc_actions[MDOC_MAX] = {
   
 #define RSORD_MAX 14  #define RSORD_MAX 14
   
 static  const int rsord[RSORD_MAX] = {  static  const enum mdoct rsord[RSORD_MAX] = {
         MDOC__A,          MDOC__A,
         MDOC__T,          MDOC__T,
         MDOC__B,          MDOC__B,
Line 945  post_display(POST_ARGS)
Line 945  post_display(POST_ARGS)
   
   
 static inline int  static inline int
 order_rs(int t)  order_rs(enum mdoct t)
 {  {
         int             i;          int             i;
   
         for (i = 0; i < RSORD_MAX; i++)          for (i = 0; i < (int)RSORD_MAX; i++)
                 if (rsord[i] == t)                  if (rsord[i] == t)
                         return(i);                          return(i);
   

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.54

CVSweb