diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-09-11 22:15:11 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-09-11 22:15:11 -0400 |
commit | aa357b80f9c4582375f3cf0ed96490713b164f64 (patch) | |
tree | a96f878349211b03242f095b477c0f8a8f205379 /lisp/gnus/gnus-int.el | |
parent | be00b56ee3a571c581c42e79b479833c1bdb1eb3 (diff) | |
download | emacs-aa357b80f9c4582375f3cf0ed96490713b164f64.tar.gz emacs-aa357b80f9c4582375f3cf0ed96490713b164f64.tar.bz2 emacs-aa357b80f9c4582375f3cf0ed96490713b164f64.zip |
* gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
* gnus-int.el (gnus-nntp-server): Move from gnus.el.
Diffstat (limited to 'lisp/gnus/gnus-int.el')
-rw-r--r-- | lisp/gnus/gnus-int.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/gnus/gnus-int.el b/lisp/gnus/gnus-int.el index 9877736bb09..2e102634727 100644 --- a/lisp/gnus/gnus-int.el +++ b/lisp/gnus/gnus-int.el @@ -63,6 +63,13 @@ server denied." (const :tag "Deny server" denied) (const :tag "Unplug Agent" offline))) +(defcustom gnus-nntp-server nil + "The name of the host running the NNTP server." + :group 'gnus-server + :type '(choice (const :tag "disable" nil) + string)) +(make-obsolete-variable 'gnus-nntp-server 'gnus-select-method "24.1") + (defvar gnus-internal-registry-spool-current-method nil "The current method, for the registry.") |