Changeset 7869e48 for owl.h


Ignore:
Timestamp:
Jan 12, 2013, 1:43:13 PM (11 years ago)
Author:
Jason Gross <jgross@mit.edu>
Children:
e3a0d71, 4485285
Parents:
4626016
git-author:
Jason Gross <jgross@mit.edu> (01/12/13 13:13:18)
git-committer:
Jason Gross <jgross@mit.edu> (01/12/13 13:43:13)
Message:
Remove trailing whitespace

This commit was made with the command sequence

    for i in $(git ls-files | tr '\n' ' ');
    do
      echo $i; sed -i s'/\s\+$//g' "$(readlink -f $i)";
    done
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.h

    rc42a8d1 r7869e48  
    7474#endif /* !OWL_VERSION_STRING */
    7575
    76 /* Feature that is being tested to redirect stderr through a pipe. 
     76/* Feature that is being tested to redirect stderr through a pipe.
    7777 * There may still be some portability problems with this. */
    7878#define OWL_STDERR_REDIR 1
     
    243243  int  (*validate_fn)(const struct _owl_variable *v, const void *newval);
    244244                                /* returns 1 if newval is valid */
    245   int  (*set_fn)(struct _owl_variable *v, const void *newval); 
     245  int  (*set_fn)(struct _owl_variable *v, const void *newval);
    246246                                /* sets the variable to a value
    247247                                 * of the appropriate type.
    248                                  * unless documented, this 
    249                                  * should make a copy. 
     248                                 * unless documented, this
     249                                 * should make a copy.
    250250                                 * returns 0 on success. */
    251251  int  (*set_fromstring_fn)(struct _owl_variable *v, const char *newval);
    252252                                /* sets the variable to a value
    253253                                 * of the appropriate type.
    254                                  * unless documented, this 
    255                                  * should make a copy. 
     254                                 * unless documented, this
     255                                 * should make a copy.
    256256                                 * returns 0 on success. */
    257257  const void *(*get_fn)(const struct _owl_variable *v);
     
    313313
    314314  char *cmd_aliased_to;         /* what this command is aliased to... */
    315  
     315
    316316  /* These don't take any context */
    317317  CALLER_OWN char *(*cmd_args_fn)(int argc, const char *const *argv, const char *buff);
     
    406406  owl_window *cmdwin;
    407407} owl_viewwin;
    408  
     408
    409409typedef struct _owl_popwin {
    410410  owl_window *border;
     
    413413  gulong sig_resize_id;
    414414} owl_popwin;
    415  
     415
    416416typedef struct _owl_msgwin {
    417417  char *msg;
Note: See TracChangeset for help on using the changeset viewer.