~ubuntu-branches/ubuntu/oneiric/irssi/oneiric

« back to all changes in this revision

Viewing changes to src/fe-common/core/completion.c

  • Committer: Bazaar Package Importer
  • Author(s): Christian Bjälevik
  • Date: 2007-04-28 02:52:01 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070428025201-2c4swxnpn4wr7fpg
Tags: 0.8.11-0ubuntu1
* New upstream release:
  - http://www.irssi.org/news/ChangeLog
* debian/{control,compat}:
  - Bump Standards.
* debian/patches/00list:
  - Disable 05upgrade-check-binary.patch, applied upstream.
  - Disable 08doublefree.patch, applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
636
636
        /* we're completing -option? */
637
637
        if (*word == '-') {
638
638
                *list = completion_get_options(cmd, word+1);
 
639
                if (*list != NULL) signal_stop();
639
640
                g_free(cmd);
640
641
                g_free(line);
641
642
                return;
650
651
                g_free(cmd);
651
652
                cmd = g_strconcat(line, " ", word, NULL);
652
653
                *list = g_list_concat(completion_get_subcommands(cmd), *list);
653
 
 
654
 
                if (*list != NULL) signal_stop();
655
654
        }
656
655
 
 
656
        if (*list != NULL) signal_stop();
657
657
        g_free(signal);
658
658
        g_free(cmd);
659
 
 
660
659
        g_free(line);
661
660
}
662
661