diff options
| author | David Aspinall | 2007-12-10 11:47:45 +0000 |
|---|---|---|
| committer | David Aspinall | 2007-12-10 11:47:45 +0000 |
| commit | 9bc3f266832ec50c30802f60e4af5ef88aeadc69 (patch) | |
| tree | e66da819d249c050d39ea219e724cd15a11aef52 /x-symbol/lisp | |
| parent | 95e2a29f51fb86ee958a261ac195d7e8c96d1741 (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.el | 2 |
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))))) ;;;=========================================================================== |
