diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-01-16 15:50:23 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-01-16 15:50:23 -0500 |
commit | abd5cfe880473c8da925d5b83e52c8019803d87d (patch) | |
tree | f1bca818e484f04bba5752b25fc9131fbd375d9e /lisp/pcmpl-unix.el | |
parent | 4572d05251f0b1eeca32a11b6315188623ad8341 (diff) | |
download | emacs-abd5cfe880473c8da925d5b83e52c8019803d87d.tar.gz |
* pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
Diffstat (limited to 'lisp/pcmpl-unix.el')
-rw-r--r-- | lisp/pcmpl-unix.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/pcmpl-unix.el b/lisp/pcmpl-unix.el index 546d4a2591d..9282fe87b5a 100644 --- a/lisp/pcmpl-unix.el +++ b/lisp/pcmpl-unix.el @@ -85,7 +85,10 @@ with the SSH option \"HashKnownHosts no\"." (while (pcomplete-here (funcall pcomplete-command-completion-function)))) (defun pcmpl-unix-read-passwd-file (file) - "Return an alist correlating gids to group names in FILE." + "Return an alist correlating gids to group names in FILE. + +If FILE is in hashed format (as described in the OpenSSH +documentation), this function returns nil." (let (names) (when (file-readable-p file) (with-temp-buffer |