[BACK]Return to cmd-set-option.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-set-option.c between version 1.85 and 1.86

version 1.85, 2015/11/12 11:05:34 version 1.86, 2015/11/18 14:27:44
Line 350 
Line 350 
   
 /* Set a string option. */  /* Set a string option. */
 struct options_entry *  struct options_entry *
 cmd_set_option_string(struct cmd *self, unused struct cmd_q *cmdq,  cmd_set_option_string(struct cmd *self, __unused struct cmd_q *cmdq,
     const struct options_table_entry *oe, struct options *oo,      const struct options_table_entry *oe, struct options *oo,
     const char *value)      const char *value)
 {  {
Line 372 
Line 372 
   
 /* Set a number option. */  /* Set a number option. */
 struct options_entry *  struct options_entry *
 cmd_set_option_number(unused struct cmd *self, struct cmd_q *cmdq,  cmd_set_option_number(__unused struct cmd *self, struct cmd_q *cmdq,
     const struct options_table_entry *oe, struct options *oo,      const struct options_table_entry *oe, struct options *oo,
     const char *value)      const char *value)
 {  {
Line 390 
Line 390 
   
 /* Set a key option. */  /* Set a key option. */
 struct options_entry *  struct options_entry *
 cmd_set_option_key(unused struct cmd *self, struct cmd_q *cmdq,  cmd_set_option_key(__unused struct cmd *self, struct cmd_q *cmdq,
     const struct options_table_entry *oe, struct options *oo,      const struct options_table_entry *oe, struct options *oo,
     const char *value)      const char *value)
 {  {
Line 406 
Line 406 
   
 /* Set a colour option. */  /* Set a colour option. */
 struct options_entry *  struct options_entry *
 cmd_set_option_colour(unused struct cmd *self, struct cmd_q *cmdq,  cmd_set_option_colour(__unused struct cmd *self, struct cmd_q *cmdq,
     const struct options_table_entry *oe, struct options *oo,      const struct options_table_entry *oe, struct options *oo,
     const char *value)      const char *value)
 {  {
Line 422 
Line 422 
   
 /* Set an attributes option. */  /* Set an attributes option. */
 struct options_entry *  struct options_entry *
 cmd_set_option_attributes(unused struct cmd *self, struct cmd_q *cmdq,  cmd_set_option_attributes(__unused struct cmd *self, struct cmd_q *cmdq,
     const struct options_table_entry *oe, struct options *oo,      const struct options_table_entry *oe, struct options *oo,
     const char *value)      const char *value)
 {  {
Line 438 
Line 438 
   
 /* Set a flag option. */  /* Set a flag option. */
 struct options_entry *  struct options_entry *
 cmd_set_option_flag(unused struct cmd *self, struct cmd_q *cmdq,  cmd_set_option_flag(__unused struct cmd *self, struct cmd_q *cmdq,
     const struct options_table_entry *oe, struct options *oo,      const struct options_table_entry *oe, struct options *oo,
     const char *value)      const char *value)
 {  {
Line 466 
Line 466 
   
 /* Set a choice option. */  /* Set a choice option. */
 struct options_entry *  struct options_entry *
 cmd_set_option_choice(unused struct cmd *self, struct cmd_q *cmdq,  cmd_set_option_choice(__unused struct cmd *self, struct cmd_q *cmdq,
     const struct options_table_entry *oe, struct options *oo,      const struct options_table_entry *oe, struct options *oo,
     const char *value)      const char *value)
 {  {

Legend:
Removed from v.1.85  
changed lines
  Added in v.1.86