Function: ange-ftp-hash-table-keys
ange-ftp-hash-table-keys is a byte-compiled function defined in
ange-ftp.el.gz.
Signature
(ange-ftp-hash-table-keys TBL)
Documentation
Return a sorted list of all the active keys in table TBL, as strings.
Source Code
;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defun ange-ftp-hash-table-keys (tbl)
"Return a sorted list of all the active keys in table TBL, as strings."
;; (let ((keys nil))
;; (maphash (lambda (k v) (push k keys)) tbl)
;; (sort keys 'string-lessp))
(sort (all-completions "" tbl) 'string-lessp))