Changeset 7869e48 for t


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
  • t/completion.t

    re59d775 r7869e48  
    2121    my $before_point = shift;
    2222    my $after_point = shift;
    23    
     23
    2424    my $ctx = BarnOwl::Completion::Context->new($before_point,
    2525                                                $after_point);
     
    5757    my $after_point = shift;
    5858    my $shift = shift;
    59    
     59
    6060    my $ctx = BarnOwl::Completion::Context->new($before_point,
    6161                                                $after_point);
     
    207207    my $words = shift;
    208208    my $complete = shift || \&complete_zwrite;
    209    
     209
    210210    my $ctx = BarnOwl::Completion::Context->new($before, $after);
    211211
     
    346346    my $files = shift;
    347347
    348     my $expect = [ sort {$a->[1] cmp $b->[1]} 
     348    my $expect = [ sort {$a->[1] cmp $b->[1]}
    349349        ((map {["$_/", defined($pfx)?"$pfx/$_/":"$_/", 0]} @$dirs),
    350350         (map {["$_",  defined($pfx)?"$pfx/$_" :$_   , 1]} @$files))
Note: See TracChangeset for help on using the changeset viewer.