Function: ange-ftp-hash-entry-exists-p
ange-ftp-hash-entry-exists-p is a byte-compiled function defined in
ange-ftp.el.gz.
Signature
(ange-ftp-hash-entry-exists-p KEY TBL)
Documentation
Return whether there is an association for KEY in table TBL.
Source Code
;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defun ange-ftp-hash-entry-exists-p (key tbl)
"Return whether there is an association for KEY in table TBL."
(and tbl (hash-table-contains-p key tbl)))