From: Jim Porter Date: Mon, 16 Oct 2023 20:34:22 +0000 (-0700) Subject: ; 'eshell-kill-process-wait-time' can be a floating-point number X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0f9c3284c6008e2404aa0520837278ed08df910b;p=emacs.git ; 'eshell-kill-process-wait-time' can be a floating-point number * lisp/eshell/esh-proc.el (eshell-kill-process-wait-time): Update type. --- diff --git a/lisp/eshell/esh-proc.el b/lisp/eshell/esh-proc.el index a91e0a16825..639f4888eb0 100644 --- a/lisp/eshell/esh-proc.el +++ b/lisp/eshell/esh-proc.el @@ -586,7 +586,7 @@ If QUERY is non-nil, query the user with QUERY before calling FUNC." (defcustom eshell-kill-process-wait-time 5 "Seconds to wait between sending termination signals to a subprocess." - :type 'integer) + :type 'number) (defcustom eshell-kill-process-signals '(SIGINT SIGQUIT SIGKILL) "Signals used to kill processes when an Eshell buffer exits.