~alivema4ever/ubuntu/trusty/weechat/lp-1299347-fix

« back to all changes in this revision

Viewing changes to src/core/wee-eval.c

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bouthenot
  • Date: 2013-05-21 19:44:31 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20130521194431-o1n165ouj17uk0q1
Tags: 0.4.1-1
* New upstream release
* Move guile build dependency from to guile-2.0-dev (previous versions are
  no longer supported).
* Add supported protocols in long description. Thanks to Jonas Smedegaard
  for the suggestion (Closes: #705216)

Show diffs side-by-side

added added

removed removed

Lines of Context:
518
518
                }
519
519
                pos++;
520
520
            }
521
 
            /* closing parenthese not found */
 
521
            /* closing parenthesis not found */
522
522
            if (pos[0] != ')')
523
523
                goto end;
524
524
            sub_expr = string_strndup (expr2 + 1, pos - expr2 - 1);
694
694
    /* create hashtable pointers if it's NULL */
695
695
    if (!pointers)
696
696
    {
697
 
        pointers = hashtable_new (16,
 
697
        pointers = hashtable_new (32,
698
698
                                  WEECHAT_HASHTABLE_STRING,
699
699
                                  WEECHAT_HASHTABLE_POINTER,
700
700
                                  NULL,
723
723
    /* create hashtable extra_vars if it's NULL */
724
724
    if (!extra_vars)
725
725
    {
726
 
        extra_vars = hashtable_new (16,
 
726
        extra_vars = hashtable_new (32,
727
727
                                    WEECHAT_HASHTABLE_STRING,
728
728
                                    WEECHAT_HASHTABLE_STRING,
729
729
                                    NULL,