Changeset 375df9c


Ignore:
Timestamp:
Jul 17, 2011, 6:56:18 PM (13 years ago)
Author:
GitHub Merge Button <merge-button@github.com>
Parents:
67e5ba36 (diff), 78a024a (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 78a024a42892ff3336097dff8dd877a8a13ac783 into 67e5ba36abe583efd14108ede63b5f5f26887257
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • util.c

    r8219374 r78a024a  
    732732  return MIN(COLOR_PAIRS, 256);
    733733#else
    734   return COLOR_PAIRS;
     734  /* TODO: Fix the rest of our code to handle color pairs past 256 and
     735   * ext-color. */
     736  return MIN(COLOR_PAIRS, 256);
    735737#endif
    736738}
  • owl.h

    r16cf182d r67e5ba36  
    1818#ifndef OWL_PERL
    1919#define NCURSES_ENABLE_STDBOOL_H 1
    20 #include <curses.h>
    21 #include <panel.h>
     20#include <ncursesw/curses.h>
     21#include <ncursesw/panel.h>
    2222#endif
    2323#include <sys/param.h>
  • tester.c

    r0ba7333 r67e5ba36  
    1010
    1111#undef instr
    12 #include <curses.h>
     12#include <ncursesw/curses.h>
    1313
    1414owl_global g;
Note: See TracChangeset for help on using the changeset viewer.