gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Sep 2011 09:15:05 +0000 (09:15 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 12 Sep 2011 09:15:05 +0000 (09:15 +0000)
gnus-int.el (gnus-nntp-server): Move from gnus.el.

lisp/ChangeLog
lisp/gnus-int.el
lisp/gnus.el

index 219ce13..8b5f7e6 100644 (file)
@@ -2,6 +2,11 @@
 
        * gnus.el (gnus-interactive-exit): Update defcustom spec.
 
+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)
 
        * 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.
 
@@ -70,7 +74,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.
        * 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>
 
 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>
 
        * 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.
 
 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.
 
        * 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>
        * 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>
 
        * 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)
index 9877736..2e10263 100644 (file)
@@ -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.")
 
index 2bca1cf..f8c3f82 100644 (file)
@@ -1394,13 +1394,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