Changeset 7869e48 for text.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
  • text.c

    rf271129 r7869e48  
    5858  ptr1=in;
    5959  end=in+strlen(in);
    60  
     60
    6161  while(ptr1<end) {
    6262    /* look for an open bracket */
     
    7676    /* find the close bracket */
    7777    ptr3=strchr(ptr2, '>');
    78    
     78
    7979    /* if there is no close, copy as you are and exit */
    8080    if (!ptr3) {
Note: See TracChangeset for help on using the changeset viewer.