Changeset c6c51d2 for global.c


Ignore:
Timestamp:
May 18, 2011, 4:10:39 PM (13 years ago)
Author:
GitHub Merge Button <merge-button@github.com>
Parents:
7865479 (diff), 92fc397 (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 92fc39701adde0a4eb22ba7dad30e5d136fcc77c into 7865479440dd042766ecbbc1119b45e5eb7cd6a6
File:
1 edited

Legend:

Unmodified
Added
Removed
  • global.c

    r7b4f3be rc72f884  
    505505
    506506void owl_global_set_startupargs(owl_global *g, int argc, char **argv) {
    507   if (g->startupargs) g_free(g->startupargs);
     507  g_free(g->startupargs);
    508508  g->startupargs = g_strjoinv(" ", argv);
    509509}
     
    747747}
    748748
    749 int owl_global_get_style_names(const owl_global *g, owl_list *l) {
    750   return owl_dict_get_keys(&(g->styledict), l);
     749void owl_global_get_style_names(const owl_global *g, owl_list *l) {
     750  owl_dict_get_keys(&(g->styledict), l);
    751751}
    752752
Note: See TracChangeset for help on using the changeset viewer.