aboutsummaryrefslogtreecommitdiff
path: root/x-symbol/lisp
diff options
context:
space:
mode:
authorDavid Aspinall2007-12-10 11:47:45 +0000
committerDavid Aspinall2007-12-10 11:47:45 +0000
commit9bc3f266832ec50c30802f60e4af5ef88aeadc69 (patch)
treee66da819d249c050d39ea219e724cd15a11aef52 /x-symbol/lisp
parent95e2a29f51fb86ee958a261ac195d7e8c96d1741 (diff)
Emacs compatibility/API updates: string-to-int -> string-to-number
Diffstat (limited to 'x-symbol/lisp')
-rw-r--r--x-symbol/lisp/x-symbol-emacs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/x-symbol/lisp/x-symbol-emacs.el b/x-symbol/lisp/x-symbol-emacs.el
index 06025a48..382fc263 100644
--- a/x-symbol/lisp/x-symbol-emacs.el
+++ b/x-symbol/lisp/x-symbol-emacs.el
@@ -43,7 +43,7 @@ test."
((< emacs-minor-version minor) nil)
((null patch))
((string-match "^[0-9]+\\.[0-9]+\\.\\([0-9]+\\)" emacs-version)
- (>= (string-to-int (match-string 1 emacs-version)) patch)))))
+ (>= (string-to-number (match-string 1 emacs-version)) patch)))))
;;;===========================================================================