Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    rf9eea4c r3617286  
    16061606          sprintf(buff, "  Field %i   : ", i+1);
    16071607         
    1608           ptr=owl_zephyr_get_field_as_utf8(n, i+1);
     1608          ptr=owl_zephyr_get_field(n, i+1);
    16091609          len=strlen(ptr);
    16101610          if (len<30) {
     
    21872187void owl_function_start_command(char *line)
    21882188{
     2189  int i, j;
    21892190  owl_editwin *tw;
    21902191
     
    21972198  owl_global_set_needrefresh(&g);
    21982199
    2199   owl_editwin_insert_string(tw, line);
     2200  j=strlen(line);
     2201  for (i=0; i<j; i++) {
     2202    owl_editwin_process_char(tw, line[i]);
     2203  }
    22002204  owl_editwin_redisplay(tw, 0);
    22012205
     
    25952599  }
    25962600  /* downcase it */
    2597   {
    2598     char *temp = g_utf8_strdown(filtname, -1);
    2599     if (temp) {
    2600       owl_free(filtname);
    2601       filtname = temp;
    2602     }
    2603   }
     2601  downstr(filtname);
    26042602  /* turn spaces, single quotes, and double quotes into dots */
    26052603  owl_text_tr(filtname, ' ', '.');
     
    30263024  char *quoted;
    30273025
    3028   buff=owl_malloc(strlen(class)+strlen(inst)+strlen(recip)+100);
     3026  buff=malloc(strlen(class)+strlen(inst)+strlen(recip)+100);
    30293027  strcpy(buff, "class");
    30303028  if (!strcmp(class, "*")) {
     
    33303328          if (ret==0) {
    33313329            for (x=0; x<numlocs; x++) {
    3332               line=owl_malloc(strlen(location[x].host)+strlen(location[x].time)+strlen(location[x].tty)+100);
     3330              line=malloc(strlen(location[x].host)+strlen(location[x].time)+strlen(location[x].tty)+100);
    33333331              tmp=short_zuser(user);
    33343332              sprintf(line, "  %-10.10s %-24.24s %-12.12s  %20.20s\n",
     
    33733371  owl_view *v;
    33743372  FILE *file;
    3375   char *plaintext;
    33763373
    33773374  v=owl_global_get_current_view(&g);
     
    33963393  for (i=0; i<j; i++) {
    33973394    m=owl_view_get_element(v, i);
    3398     plaintext = owl_strip_format_chars(owl_message_get_text(m));
    3399     if (plaintext) {
    3400       fputs(plaintext, file);
    3401       owl_free(plaintext);
    3402     }
     3395    fputs(owl_message_get_text(m), file);
    34033396  }
    34043397  fclose(file);
     
    34413434          _exit(127);
    34423435        }
    3443         parsed=owl_realloc(parsed, sizeof(*parsed) * (myargc+1));
     3436        parsed=realloc(parsed, sizeof(*parsed) * (myargc+1));
    34443437        parsed[myargc] = NULL;
    34453438       
Note: See TracChangeset for help on using the changeset viewer.