[BACK]Return to tmux.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.h between version 1.1140 and 1.1141

version 1.1140, 2021/09/09 13:38:32 version 1.1141, 2021/09/10 14:22:24
Line 93 
Line 93 
 #define DEFAULT_XPIXEL 16  #define DEFAULT_XPIXEL 16
 #define DEFAULT_YPIXEL 32  #define DEFAULT_YPIXEL 32
   
   /* Don't complain about format arguments. */
   #if __clang__ || __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
   #define no_format_nonliteral(x) do { \
           _Pragma ("GCC diagnostic push") \
           _Pragma ("GCC diagnostic ignored \"-Wformat-nonliteral\"") \
            x; \
           _Pragma ("GCC diagnostic pop") \
   } while (0)
   #else
   #define no_format_nonliteral(x) do { \
            x; \
   } while (0)
   #endif
   
 /* Attribute to make GCC check printf-like arguments. */  /* Attribute to make GCC check printf-like arguments. */
 #define printflike(a, b) __attribute__ ((format (printf, a, b)))  #define printflike(a, b) __attribute__ ((format (printf, a, b)))
   

Legend:
Removed from v.1.1140  
changed lines
  Added in v.1.1141