summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/ChangeLog38
-rw-r--r--lisp/gnus/gnus-int.el7
-rw-r--r--lisp/gnus/gnus.el7
3 files changed, 28 insertions, 24 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 467de11ceee..69e3197c556 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
+2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
+ * gnus-int.el (gnus-nntp-server): Move from gnus.el.
+
2011-09-12 Andrew Cohen <cohen@andy.bu.edu>
* gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
@@ -8,14 +13,13 @@
* message.el (message-pop-to-buffer): Default to switch-to-buffer.
(message-mail-other-window, message-mail-other-frame)
- (message-news-other-window, message-news-other-frame): Use
- switch-to-buffer-other-frame and switch-to-buffer-other-window instead
- of setting buffer display varibles.
+ (message-news-other-window, message-news-other-frame):
+ Use switch-to-buffer-other-frame and switch-to-buffer-other-window
+ instead of setting buffer display varibles.
2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
- * gnus-group.el (gnus-group-list-limit): Explain what the command
- does.
+ * gnus-group.el (gnus-group-list-limit): Explain what the command does.
* gnus-sum.el (gnus-fetch-headers): Bump message level.
@@ -66,7 +70,7 @@
* plstore.el (plstore--get-buffer): Silence compiler warnings by
renaming function arguments from `this'.
- * gnus-sum.el (gnus-newsgroup-recent): Removed.
+ * gnus-sum.el (gnus-newsgroup-recent): Remove.
* gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
has been renamed.
@@ -196,8 +200,8 @@
* nnmairix.el (nnmairix-request-set-mark)
(nnmairix-goto-original-article): Remove adding of article to registry,
since `gnus-registry-add-group' isn't available anymore.
- (nnmairix-determine-original-group-from-registry): Use
- `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
+ (nnmairix-determine-original-group-from-registry):
+ Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
available anymore.
2011-08-12 Simon Josefsson <simon@josefsson.org>
@@ -308,7 +312,7 @@
2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
- * starttls.el (starttls-available-p): Renamed from
+ * starttls.el (starttls-available-p): Rename from
`starttls-any-program-available' and changed return convention.
2011-07-31 Lars Ingebrigtsen <larsi@gnus.org>
@@ -364,8 +368,8 @@
* nnir.el (gnus-group-make-nnir-group): Allow optional search query
argument.
- (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query): Use
- `nnir-address' to handle server info rather than passing an arg.
+ (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
+ Use `nnir-address' to handle server info rather than passing an arg.
* nnimap.el (nnimap-make-thread-query): New utility function to format
an imap thread search query.
@@ -418,7 +422,7 @@
2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
- * gnus.el (debbugs-gnu): Renamed from debbugs-emacs.
+ * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
* message.el (message-reply): Work around mysterious bug where
`message-mode' seems to overwrite the locally bound `subject' variable.
@@ -447,9 +451,9 @@
* gnus-msg.el (gnus-bug): Don't insert user variables. It usually
isn't very interesting any more, and it leaks potentially secret data.
- (gnus-debug): Removed.
+ (gnus-debug): Remove.
- * gnus-art.el (gnus-ignored-headers): Removed obsolete and non-working
+ * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
use of :custom-show.
2011-07-07 Daiki Ueno <ueno@unixuser.org>
@@ -636,8 +640,8 @@
* gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
quit window configuration.
- * auth-source.el (epg-context-set-passphrase-callback): Remove
- duplicate autoload.
+ * auth-source.el (epg-context-set-passphrase-callback):
+ Remove duplicate autoload.
2011-06-30 Andrew Cohen <cohen@andy.bu.edu>
@@ -754,7 +758,7 @@
* spam.el (spam-stat): Require in a normal fashion without binding
`spam-stat-install-hooks' to avoid compilation warnings.
- * spam-stat.el (spam-stat-install-hooks): Removed.
+ * spam-stat.el (spam-stat-install-hooks): Remove.
(spam-stat-install-hooks): Don't run automatically.
2011-06-26 Timo Juhani Lindfors <timo.lindfors@iki.fi> (tiny change)
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.")
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el
index b6be03da2b9..3dfbc862837 100644
--- a/lisp/gnus/gnus.el
+++ b/lisp/gnus/gnus.el
@@ -1395,13 +1395,6 @@ non-numeric prefix - `C-u M-x gnus', in short."
:type '(repeat string))
(make-obsolete-variable 'gnus-secondary-servers 'gnus-select-method "24.1")
-(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")
-
(defcustom gnus-secondary-select-methods nil
"A list of secondary methods that will be used for reading news.
This is a list where each element is a complete select method (see