Branch: Tag:

1999-11-22

1999-11-22 21:01:43 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Fixed typo in String.width().

Rev: src/builtin_functions.c:1.208

5:   \*/   /**/   #include "global.h" - RCSID("$Id: builtin_functions.c,v 1.207 1999/11/14 20:14:46 mast Exp $"); + RCSID("$Id: builtin_functions.c,v 1.208 1999/11/22 21:01:43 grubba Exp $");   #include "interpret.h"   #include "svalue.h"   #include "pike_macros.h"
5132:   {    struct pike_string *s;    int ret; -  get_all_args("String.width",args,"%S",&s); +  get_all_args("String.width",args,"%W",&s);    ret=s->size_shift;    pop_n_elems(args);    push_int(8 * (1<<ret));