Changeset 7869e48 for editwin.c


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
  • editwin.c

    r7803326 r7869e48  
    12861286  const char *p;
    12871287  int width = offset;
    1288  
     1288
    12891289  for(p = e->buff + start;
    12901290      p < e->buff + end;
     
    13901390{
    13911391  char *p;
    1392  
     1392
    13931393  p = g_new(char, end - start + 1);
    13941394  memcpy(p, e->buff + start, end - start);
     
    14181418  if (e->win) owl_window_dirty(e->win);
    14191419}
    1420 
    14211420
    14221421
Note: See TracChangeset for help on using the changeset viewer.