]> git.eshelyaron.com Git - emacs.git/commitdiff
Documentation and error-message edits re gnus-server-alist
authorEric Abrahamsen <eric@ericabrahamsen.net>
Mon, 16 Oct 2017 18:30:05 +0000 (11:30 -0700)
committerEric Abrahamsen <eric@ericabrahamsen.net>
Mon, 16 Oct 2017 18:30:05 +0000 (11:30 -0700)
* lisp/gnus/gnus.el (gnus-server-alist): Expand docstring.
* lisp/gnus/gnus-srvr.el (gnus-server-kill-server,
  gnus-server-edit-server): Return error messages that tell the user
  what the actual problem is.
* doc/misc/gnus.texi (Server Commands): Note that not all servers are
  editable via the server buffer.

doc/misc/gnus.texi
lisp/gnus/gnus-srvr.el
lisp/gnus/gnus.el

index 88e121a07b0f3dcbbd84ef4c40ee3acaa623a28d..15c6230ad0bb2bd30441010c22988da7bcdab2fb 100644 (file)
@@ -13216,6 +13216,11 @@ Also @pxref{Formatting Variables}.
 @subsection Server Commands
 @cindex server commands
 
+The following keybinding are available in the server buffer.  Be aware
+that some of the commands will only work on servers that you've added
+through this interface (with @kbd{a}), not with servers you've defined
+in your init files.
+
 @table @kbd
 
 @item v
index 82056cf1653e2821b90f3f933e769b25f464116a..8a91973e388bc9aba6c05e3169681f604d46c01a 100644 (file)
@@ -452,7 +452,8 @@ The following commands are available:
     (if server (error "No such server: %s" server)
       (error "No server on the current line")))
   (unless (assoc server gnus-server-alist)
-    (error "Read-only server %s" server))
+    (error "Server %s must be deleted from your configuration files"
+          server))
   (gnus-dribble-touch)
   (let ((buffer-read-only nil))
     (gnus-delete-line))
@@ -642,7 +643,8 @@ The following commands are available:
   (unless server
     (error "No server on current line"))
   (unless (assoc server gnus-server-alist)
-    (error "This server can't be edited"))
+    (error "Server %s must be edited in your configuration files"
+          server))
   (let ((info (cdr (assoc server gnus-server-alist))))
     (gnus-close-server info)
     (gnus-edit-form
index 8c0846be9f7fb1bf7bea8dc839bef2ba566d0a13..ba4291a321a49eaa203021474ca1270f6dc8707b 100644 (file)
@@ -2592,7 +2592,9 @@ a string, be sure to use a valid format, see RFC 2616."
 (defvar gnus-group-history nil)
 
 (defvar gnus-server-alist nil
-  "List of available servers.")
+  "Servers created by Gnus, or via the server buffer.
+Servers defined in the user's config files do not appear here.
+This variable is persisted in the user's .newsrc.eld file.")
 
 (defcustom gnus-cache-directory
   (nnheader-concat gnus-directory "cache/")