aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-02-04 23:46:40 -0800
committerGlenn Morris2014-02-04 23:46:40 -0800
commit645586dcd8979d58b3f8825404d6e1b630855753 (patch)
treecbdaa3802ffd40605b81f870631a56fc5c54808f
parent3660c612b3b0f45fe8bf80d1ed52d50c41f48713 (diff)
downloademacs-645586dcd8979d58b3f8825404d6e1b630855753.tar.gz
emacs-645586dcd8979d58b3f8825404d6e1b630855753.zip
Some doc for url-cookie-list
* lisp/url/url-cookie.el (url-cookie-list): Doc fix. * doc/misc/url.texi (Cookies): Mention url-cookie-list command. * etc/NEWS: Related edit.
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/url.texi7
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/url/ChangeLog4
-rw-r--r--lisp/url/url-cookie.el4
5 files changed, 20 insertions, 4 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index c64e5e695dc..606a736999e 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12014-02-05 Glenn Morris <rgm@gnu.org>
2
3 * url.texi (Cookies): Mention url-cookie-list command.
4
12014-02-03 Glenn Morris <rgm@gnu.org> 52014-02-03 Glenn Morris <rgm@gnu.org>
2 6
3 * cl.texi (Blocks and Exits): Mention cl-tagbody. 7 * cl.texi (Blocks and Exits): Mention cl-tagbody.
diff --git a/doc/misc/url.texi b/doc/misc/url.texi
index ecfd0c66929..5cda62eade7 100644
--- a/doc/misc/url.texi
+++ b/doc/misc/url.texi
@@ -410,6 +410,13 @@ ignored; any other value means to ask the user on each request.
410@node Cookies 410@node Cookies
411@subsection Cookies 411@subsection Cookies
412 412
413@findex url-cookie-delete
414@defun url-cookie-list
415This command creates a @file{*url cookies*} buffer listing the current
416cookies, if there are any. You can remove a cookie using the
417@kbd{C-k} (@code{url-cookie-delete}) command.
418@end defun
419
413@defopt url-cookie-file 420@defopt url-cookie-file
414The file in which cookies are stored, defaulting to @file{cookies} in 421The file in which cookies are stored, defaulting to @file{cookies} in
415the directory specified by @code{url-configuration-directory}. 422the directory specified by @code{url-configuration-directory}.
diff --git a/etc/NEWS b/etc/NEWS
index 11cb240890a..942dec98ea4 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -871,8 +871,9 @@ which support POSIX ACLs.
871*** Handlers for `file-notify-add-watch' and `file-notify-rm-watch' 871*** Handlers for `file-notify-add-watch' and `file-notify-rm-watch'
872for remote machines which support filesystem notifications. 872for remote machines which support filesystem notifications.
873 873
874** New command `url-cookie-list' displays all the current cookies, and 874+++
875allows deleting selected cookies. 875** New URL command `url-cookie-list' displays the current cookies,
876and allows you to interactively remove cookies.
876 877
877** VC and related modes 878** VC and related modes
878 879
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 3a82e4b3891..ac55bad13fb 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,7 @@
12014-02-05 Glenn Morris <rgm@gnu.org>
2
3 * url-cookie.el (url-cookie-list): Doc fix.
4
12014-01-25 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de> 52014-01-25 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
2 6
3 * url-vars.el (url): Link to info manual. 7 * url-vars.el (url): Link to info manual.
diff --git a/lisp/url/url-cookie.el b/lisp/url/url-cookie.el
index f396da73e35..55e0fb33951 100644
--- a/lisp/url/url-cookie.el
+++ b/lisp/url/url-cookie.el
@@ -352,9 +352,9 @@ to run the `url-cookie-setup-save-timer' function manually."
352;;; Mode for listing and editing cookies. 352;;; Mode for listing and editing cookies.
353 353
354(defun url-cookie-list () 354(defun url-cookie-list ()
355 "List the URL cookies." 355 "Display a buffer listing the current URL cookies, if there are any.
356Use \\<url-cookie-mode-map>\\\[url-cookie-delete] to remove cookies."
356 (interactive) 357 (interactive)
357
358 (when (and (null url-cookie-secure-storage) 358 (when (and (null url-cookie-secure-storage)
359 (null url-cookie-storage)) 359 (null url-cookie-storage))
360 (error "No cookies are defined")) 360 (error "No cookies are defined"))