]> git.eshelyaron.com Git - emacs.git/commitdiff
(hilit-add-pattern): Replace `string-to-int' by `string-to-number'.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 9 May 2005 08:45:47 +0000 (08:45 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 9 May 2005 08:45:47 +0000 (08:45 +0000)
lisp/obsolete/hilit19.el

index a5fd33adcaa5331d1dea7a415da0f68f0ec8ae7a..8c5b64ed5ad6136d3609ce0d8623adc1f42288bf 100644 (file)
@@ -1050,7 +1050,7 @@ Optionally, place the new pattern first in the pattern list"
 
   (and (equal pstart "") (error "Must specify starting regex"))
   (cond ((equal pend "") (setq pend 0))
-       ((string-match "^[0-9]+$" pend) (setq pend (string-to-int pend))))
+       ((string-match "^[0-9]+$" pend) (setq pend (string-to-number pend))))
   (or mode (setq mode major-mode))
   (let ((old-patterns (cdr (assq mode hilit-patterns-alist)))
        (new-pat (list pstart pend face)))