Some doc for url-cookie-list
authorGlenn Morris <rgm@gnu.org>
Wed, 5 Feb 2014 07:46:40 +0000 (23:46 -0800)
committerGlenn Morris <rgm@gnu.org>
Wed, 5 Feb 2014 07:46:40 +0000 (23:46 -0800)
* lisp/url/url-cookie.el (url-cookie-list): Doc fix.

* doc/misc/url.texi (Cookies): Mention url-cookie-list command.

* etc/NEWS: Related edit.

doc/misc/ChangeLog
doc/misc/url.texi
etc/NEWS
lisp/url/ChangeLog
lisp/url/url-cookie.el

index c64e5e6..606a736 100644 (file)
@@ -1,3 +1,7 @@
+2014-02-05  Glenn Morris  <rgm@gnu.org>
+
+       * url.texi (Cookies): Mention url-cookie-list command.
+
 2014-02-03  Glenn Morris  <rgm@gnu.org>
 
        * cl.texi (Blocks and Exits): Mention cl-tagbody.
index ecfd0c6..5cda62e 100644 (file)
@@ -410,6 +410,13 @@ ignored; any other value means to ask the user on each request.
 @node Cookies
 @subsection Cookies
 
+@findex url-cookie-delete
+@defun url-cookie-list
+This command creates a @file{*url cookies*} buffer listing the current
+cookies, if there are any.  You can remove a cookie using the
+@kbd{C-k} (@code{url-cookie-delete}) command.
+@end defun
+
 @defopt url-cookie-file
 The file in which cookies are stored, defaulting to @file{cookies} in
 the directory specified by @code{url-configuration-directory}.
index 11cb240..942dec9 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -871,8 +871,9 @@ which support POSIX ACLs.
 *** Handlers for `file-notify-add-watch' and `file-notify-rm-watch'
 for remote machines which support filesystem notifications.
 
-** New command `url-cookie-list' displays all the current cookies, and
-allows deleting selected cookies.
++++
+** New URL command `url-cookie-list' displays the current cookies,
+and allows you to interactively remove cookies.
 
 ** VC and related modes
 
index 3a82e4b..ac55bad 100644 (file)
@@ -1,3 +1,7 @@
+2014-02-05  Glenn Morris  <rgm@gnu.org>
+
+       * url-cookie.el (url-cookie-list): Doc fix.
+
 2014-01-25  RĂ¼diger Sonderfeld  <ruediger@c-plusplus.de>
 
        * url-vars.el (url): Link to info manual.
index f396da7..55e0fb3 100644 (file)
@@ -352,9 +352,9 @@ to run the `url-cookie-setup-save-timer' function manually."
 ;;; Mode for listing and editing cookies.
 
 (defun url-cookie-list ()
-  "List the URL cookies."
+  "Display a buffer listing the current URL cookies, if there are any.
+Use \\<url-cookie-mode-map>\\\[url-cookie-delete] to remove cookies."
   (interactive)
-
   (when (and (null url-cookie-secure-storage)
             (null url-cookie-storage))
     (error "No cookies are defined"))