Changeset e3d9c77 for functions.c


Ignore:
Timestamp:
Oct 26, 2003, 3:23:38 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
bc08664
Parents:
70b53ec
Message:
Write owl_text_quote
Moved some functions between util.c, text.c and zephyr.c
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    reec69e1 re3d9c77  
    19551955          if (owl_global_is_smartstrip(&g)) {
    19561956            tmp2=tmp;
    1957             tmp=owl_util_smartstripped_user(tmp2);
     1957            tmp=owl_zephyr_smartstripped_user(tmp2);
    19581958            owl_free(tmp2);
    19591959          }
     
    23952395  downstr(filtname);
    23962396  /* turn spaces into hyphens */
    2397   owl_util_tr(filtname, ' ', '.');
     2397  owl_text_tr(filtname, ' ', '.');
    23982398 
    23992399  /* if it already exists then go with it.  This lets users override */
     
    24052405  argbuff=owl_malloc(len+20);
    24062406  tmpclass=owl_strdup(class);
    2407   owl_util_tr(tmpclass, ' ', '.');
     2407  owl_text_tr(tmpclass, ' ', '.');
    24082408  if (instance) {
    24092409    tmpinstance=owl_strdup(instance);
    2410     owl_util_tr(tmpinstance, ' ', '.');
     2410    owl_text_tr(tmpinstance, ' ', '.');
    24112411  }
    24122412  sprintf(argbuff, "( class ^%s$ )", tmpclass);
Note: See TracChangeset for help on using the changeset viewer.