- Timestamp:
- Jan 12, 2013, 1:43:13 PM (12 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
util.c
r7b89e8c r7869e48 255 255 owl_string_vappendf_quoted(buf, tmpl, ap); 256 256 va_end(ap); 257 return g_string_free(buf, false); 257 return g_string_free(buf, false); 258 258 } 259 259 … … 306 306 { 307 307 /* 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" */ 309 309 size_t timestr_size = 16; 310 310 char *timestr = NULL; … … 385 385 CALLER_OWN char *owl_util_stripnewlines(const char *in) 386 386 { 387 387 388 388 char *tmp, *ptr1, *ptr2, *out; 389 389 … … 643 643 int owl_util_can_break_after(gunichar c) 644 644 { 645 645 646 646 if (c == ' ') return 1; 647 647 if (c >= 0x3000 && c <= 0x312f) { … … 803 803 /* 804 804 * There are three ways the signal could come to an end: 805 * 805 * 806 806 * 1. The user explicitly disconnects it with the returned signal_id. 807 807 * - In that case, the disconnection unref's the closure, causing it
Note: See TracChangeset
for help on using the changeset viewer.