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 /generic/pg-pgip.el | |
| parent | 95e2a29f51fb86ee958a261ac195d7e8c96d1741 (diff) | |
Emacs compatibility/API updates: string-to-int -> string-to-number
Diffstat (limited to 'generic/pg-pgip.el')
| -rw-r--r-- | generic/pg-pgip.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/pg-pgip.el b/generic/pg-pgip.el index 8b12065d..8af6b0dc 100644 --- a/generic/pg-pgip.el +++ b/generic/pg-pgip.el @@ -500,7 +500,7 @@ Also sets local proverid and srcid variables for buffer." (t (progn (pg-pgip-warning "pg-pgip-interpret-value: received non-bool value %s" value) nil)))) - ((eq type 'integer) (string-to-int value)) + ((eq type 'integer) (string-to-number value)) ((eq type 'string) value) ((eq (car-safe type) 'const) value) ((eq (car-safe type) 'choice) |
