]> git.eshelyaron.com Git - emacs.git/commitdiff
(eshell-convert-numeric-arguments): Annotated the documentation string
authorJohn Wiegley <johnw@newartisans.com>
Thu, 10 May 2001 03:51:34 +0000 (03:51 +0000)
committerJohn Wiegley <johnw@newartisans.com>
Thu, 10 May 2001 03:51:34 +0000 (03:51 +0000)
to tell users about `eshell-no-numeric-conversions'.

lisp/eshell/esh-util.el

index 62c72af02ca284e16bcf9d89c2e37e92de8c49fe..4edcb53761c28a7a7c6b6c59e41f3c304dbc5fe5 100644 (file)
@@ -84,7 +84,18 @@ Setting this to nil is offered as an aid to debugging only."
 (defcustom eshell-convert-numeric-arguments t
   "*If non-nil, converting arguments of numeric form to Lisp numbers.
 Numeric form is tested using the regular expression
-`eshell-number-regexp'."
+`eshell-number-regexp'.
+
+NOTE: If you find that numeric conversions are intefering with the
+specification of filenames (for example, in calling `find-file', or
+some other Lisp function that deals with files, not numbers), add the
+following in your .emacs file:
+
+  (put 'find-file 'eshell-no-numeric-conversions t)
+
+Any function with the property `eshell-no-numeric-conversions' set to
+a non-nil value, will be passed strings, not numbers, even when an
+argument matches `eshell-number-regexp'."
   :type 'boolean
   :group 'eshell-util)