Changeset 530c51c


Ignore:
Timestamp:
Jul 3, 2011, 11:47:06 PM (13 years ago)
Author:
GitHub Merge Button <merge-button@github.com>
Parents:
785ee77 (diff), 5c2ef5b (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 5c2ef5b8924ebc9e6c3d006f362dde3e73568d68 into 785ee770a72bcdda39fd541a90d8c640fa5c76ca
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • commands.c

    rca749a9 r5c2ef5b  
    24982498  } else if(argc == 2) {
    24992499    /* Handle :unpunt <number> */
    2500     if(unpunt && (i=atoi(argv[1])) !=0) {
     2500    if (unpunt && (i = atoi(argv[1])) > 0) {
    25012501      i--;      /* Accept 1-based indexing */
    25022502      if (i < fl->len) {
  • messagelist.c

    rfc8a87a r5c2ef5b  
    2222void *owl_messagelist_get_element(const owl_messagelist *ml, int n)
    2323{
     24  if (n >= ml->list->len) return NULL;
    2425  return ml->list->pdata[n];
    2526}
Note: See TracChangeset for help on using the changeset viewer.