comparison lisp/gnus/nnimap.el @ 110502:10e44274dbb4

gnus-group.el (gnus-group-update-hook): Add missing version. gnus-group.el (gnus-group-highlight-line): Docstring fix. nnimap.el (nnimap-stream): Fix docstring.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Thu, 23 Sep 2010 07:59:12 +0000
parents 4ead2c32359c
children 4d2f8b81bb01
comparison
equal deleted inserted replaced
110501:906ce0f04ef3 110502:10e44274dbb4
49 If nnimap-stream is `ssl', this will default to `imaps'. If not, 49 If nnimap-stream is `ssl', this will default to `imaps'. If not,
50 it will default to `imap'.") 50 it will default to `imap'.")
51 51
52 (defvoo nnimap-stream 'ssl 52 (defvoo nnimap-stream 'ssl
53 "How nnimap will talk to the IMAP server. 53 "How nnimap will talk to the IMAP server.
54 Values are `ssl' and `network'.") 54 Values are `ssl', `network' or `shell'.")
55 55
56 (defvoo nnimap-shell-program (if (boundp 'imap-shell-program) 56 (defvoo nnimap-shell-program (if (boundp 'imap-shell-program)
57 (if (listp imap-shell-program) 57 (if (listp imap-shell-program)
58 (car imap-shell-program) 58 (car imap-shell-program)
59 imap-shell-program) 59 imap-shell-program)