Changeset 4485285 for util.c


Ignore:
Timestamp:
Jan 12, 2013, 1:43:31 PM (11 years ago)
Author:
Jason Gross <jasongross9@gmail.com>
Parents:
4626016 (diff), 7869e48 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:
Merge 7869e4801e577613b7db987d11bddb0a31fe755c into 46260161946c87dfed4fef9e3223b2327895f139
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.