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

    r7b89e8c r7869e48  
    255255  owl_string_vappendf_quoted(buf, tmpl, ap);
    256256  va_end(ap);
    257   return g_string_free(buf, false); 
     257  return g_string_free(buf, false);
    258258}
    259259
     
    306306{
    307307  /* 32 chosen for first attempt because timestr will end up being
    308    * something like "Www Mmm dd hh:mm:ss AM yyyy UTC\0" */ 
     308   * something like "Www Mmm dd hh:mm:ss AM yyyy UTC\0" */
    309309  size_t timestr_size = 16;
    310310  char *timestr = NULL;
     
    385385CALLER_OWN char *owl_util_stripnewlines(const char *in)
    386386{
    387  
     387
    388388  char  *tmp, *ptr1, *ptr2, *out;
    389389
     
    643643int owl_util_can_break_after(gunichar c)
    644644{
    645  
     645
    646646  if (c == ' ') return 1;
    647647  if (c >= 0x3000 && c <= 0x312f) {
     
    803803/*
    804804 * There are three ways the signal could come to an end:
    805  * 
     805 *
    806806 * 1. The user explicitly disconnects it with the returned signal_id.
    807807 *    - In that case, the disconnection unref's the closure, causing it
Note: See TracChangeset for help on using the changeset viewer.