diff options
author | Dave Love <fx@gnu.org> | 2001-02-07 23:59:40 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2001-02-07 23:59:40 +0000 |
commit | 6a44f20fb5fa8b7bbfc9fb56cb88ae58f3efbe2a (patch) | |
tree | 13d2e5acf38957612f0a0466ddc9ec0cb2ba2fa7 /lisp | |
parent | fc31a1c3e10079191d1db357689b1c6cab7f7c46 (diff) | |
download | emacs-6a44f20fb5fa8b7bbfc9fb56cb88ae58f3efbe2a.tar.gz |
(eshell-skip-prompt-function): Fix :type.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/eshell/esh-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index 5da511626c5..d0393df4153 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el @@ -188,7 +188,7 @@ This is used by `eshell-watch-for-password-prompt'." (defcustom eshell-skip-prompt-function nil "*A function called from beginning of line to skip the prompt." - :type 'function + :type '(choice (const nil) function) :group 'eshell-mode) (defcustom eshell-status-in-modeline t |