summaryrefslogtreecommitdiff
path: root/lisp/eshell/esh-io.el
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2005-05-31 00:14:26 +0000
committerJohn Wiegley <johnw@newartisans.com>2005-05-31 00:14:26 +0000
commit6b0e3e4df5deff8b5d1dcb5065c070abb8393e9d (patch)
treec20c50525936f9970338856e57bac951c4b3696e /lisp/eshell/esh-io.el
parentc7a4ce37e95f0ac17d80bdb7c2b1280b82b186fb (diff)
downloademacs-6b0e3e4df5deff8b5d1dcb5065c070abb8393e9d.tar.gz
emacs-6b0e3e4df5deff8b5d1dcb5065c070abb8393e9d.tar.bz2
emacs-6b0e3e4df5deff8b5d1dcb5065c070abb8393e9d.zip
Changed all uses of `directory-sep-char' to ?/, and all uses of
`string-to-int' to `string-to-number'.
Diffstat (limited to 'lisp/eshell/esh-io.el')
-rw-r--r--lisp/eshell/esh-io.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-io.el b/lisp/eshell/esh-io.el
index 1161013cf58..8f171760ea0 100644
--- a/lisp/eshell/esh-io.el
+++ b/lisp/eshell/esh-io.el
@@ -192,7 +192,7 @@ not be added to this variable."
(eshell-finish-arg
(prog1
(list 'eshell-set-output-handle
- (or (and sh (string-to-int sh)) 1)
+ (or (and sh (string-to-number sh)) 1)
(list 'quote
(aref [overwrite append insert]
(1- (length oper)))))