[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.68 and 1.69

version 1.68, 2014/04/17 07:55:43 version 1.69, 2014/04/17 14:45:49
Line 267 
Line 267 
 /* Unset an option. */  /* Unset an option. */
 int  int
 cmd_set_option_unset(struct cmd *self, struct cmd_q *cmdq,  cmd_set_option_unset(struct cmd *self, struct cmd_q *cmdq,
     const struct options_table_entry *oe, struct options *oo, const char *value)      const struct options_table_entry *oe, struct options *oo,
       const char *value)
 {  {
         struct args     *args = self->args;          struct args     *args = self->args;
   
Line 287 
Line 288 
 /* Set an option. */  /* Set an option. */
 int  int
 cmd_set_option_set(struct cmd *self, struct cmd_q *cmdq,  cmd_set_option_set(struct cmd *self, struct cmd_q *cmdq,
     const struct options_table_entry *oe, struct options *oo, const char *value)      const struct options_table_entry *oe, struct options *oo,
       const char *value)
 {  {
         struct options_entry    *o;          struct options_entry    *o;
   
Line 335 
Line 337 
 /* 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 char *value)      const struct options_table_entry *oe, struct options *oo,
       const char *value)
 {  {
         struct args             *args = self->args;          struct args             *args = self->args;
         struct options_entry    *o;          struct options_entry    *o;
Line 356 
Line 359 
 /* 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 char *value)      const struct options_table_entry *oe, struct options *oo,
       const char *value)
 {  {
         long long        ll;          long long        ll;
         const char      *errstr;          const char      *errstr;
Line 373 
Line 377 
 /* 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 char *value)      const struct options_table_entry *oe, struct options *oo,
       const char *value)
 {  {
         int     key;          int     key;
   
Line 388 
Line 393 
 /* 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 char *value)      const struct options_table_entry *oe, struct options *oo,
       const char *value)
 {  {
         int     colour;          int     colour;
   
Line 403 
Line 409 
 /* 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 char *value)      const struct options_table_entry *oe, struct options *oo,
       const char *value)
 {  {
         int     attr;          int     attr;
   
Line 418 
Line 425 
 /* 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 char *value)      const struct options_table_entry *oe, struct options *oo,
       const char *value)
 {  {
         int     flag;          int     flag;
   

Legend:
Removed from v.1.68  
changed lines
  Added in v.1.69