tony2001                Wed Dec 20 15:12:38 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/pspell pspell.c 
  Log:
  MFH
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/pspell/pspell.c?r1=1.45.2.4.2.2&r2=1.45.2.4.2.3&diff_format=u
Index: php-src/ext/pspell/pspell.c
diff -u php-src/ext/pspell/pspell.c:1.45.2.4.2.2 
php-src/ext/pspell/pspell.c:1.45.2.4.2.3
--- php-src/ext/pspell/pspell.c:1.45.2.4.2.2    Mon Aug 14 20:08:18 2006
+++ php-src/ext/pspell/pspell.c Wed Dec 20 15:12:38 2006
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: pspell.c,v 1.45.2.4.2.2 2006/08/14 20:08:18 nlopess Exp $ */
+/* $Id: pspell.c,v 1.45.2.4.2.3 2006/12/20 15:12:38 tony2001 Exp $ */
 
 #define IS_EXT_MODULE
 
@@ -751,8 +751,7 @@
        zval **conf, **pignore;
        int argc;
 
-       int loc = PSPELL_LARGEST_WORD;
-       char ignore_str[PSPELL_LARGEST_WORD + 1];       
+       char ignore_str[MAX_LENGTH_OF_LONG + 1];        
        long ignore = 0L;
 
        PspellConfig *config;
@@ -767,23 +766,9 @@
        convert_to_long_ex(pignore);
        ignore = Z_LVAL_PP(pignore);
 
-       /* The following is a very hackish way to convert a long to a string
-       (actually only the numbers 0-999 will get converted properly, but that 
should
-       be sufficient). If anyone knows of a better way to convert an integer 
to a string,
-       please, fix it.*/
-       ignore_str[loc] = '\0';
-       while(ignore > 0){
-               if(loc == 0){
-                       break;
-               }
-               ignore_str[--loc] = '0' + (ignore % 10);
-               ignore /= 10;
-       }
-       if(ignore_str[loc] == '\0'){
-               ignore_str[--loc] = '0';
-       }
+       sprintf(ignore_str, "%ld", ignore);
 
-       pspell_config_replace(config, "ignore", &ignore_str[loc]);
+       pspell_config_replace(config, "ignore", ignore_str);
        RETURN_TRUE;
 }
 /* }}} */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to