emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r116266: Some doc for url-cookie-list


From: Glenn Morris
Subject: [Emacs-diffs] trunk r116266: Some doc for url-cookie-list
Date: Wed, 05 Feb 2014 07:47:00 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116266
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2014-02-04 23:46:40 -0800
message:
  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.
modified:
  doc/misc/ChangeLog             changelog-20091113204419-o5vbwnq5f7feedwu-6331
  doc/misc/url.texi              url.texi-20091113204419-o5vbwnq5f7feedwu-6326
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  lisp/url/ChangeLog             changelog-20091113204419-o5vbwnq5f7feedwu-3116
  lisp/url/url-cookie.el         
urlcookie.el-20091113204419-o5vbwnq5f7feedwu-2980
=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2014-02-03 02:58:13 +0000
+++ b/doc/misc/ChangeLog        2014-02-05 07:46:40 +0000
@@ -1,3 +1,7 @@
+2014-02-05  Glenn Morris  <address@hidden>
+
+       * url.texi (Cookies): Mention url-cookie-list command.
+
 2014-02-03  Glenn Morris  <address@hidden>
 
        * cl.texi (Blocks and Exits): Mention cl-tagbody.

=== modified file 'doc/misc/url.texi'
--- a/doc/misc/url.texi 2014-01-06 05:25:46 +0000
+++ b/doc/misc/url.texi 2014-02-05 07:46:40 +0000
@@ -410,6 +410,13 @@
 @node Cookies
 @subsection Cookies
 
address@hidden url-cookie-delete
address@hidden 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
address@hidden (@code{url-cookie-delete}) command.
address@hidden 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}.

=== modified file 'etc/NEWS'
--- a/etc/NEWS  2014-02-04 07:36:58 +0000
+++ b/etc/NEWS  2014-02-05 07:46:40 +0000
@@ -871,8 +871,9 @@
 *** 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
 

=== modified file 'lisp/url/ChangeLog'
--- a/lisp/url/ChangeLog        2014-01-25 19:15:42 +0000
+++ b/lisp/url/ChangeLog        2014-02-05 07:46:40 +0000
@@ -1,3 +1,7 @@
+2014-02-05  Glenn Morris  <address@hidden>
+
+       * url-cookie.el (url-cookie-list): Doc fix.
+
 2014-01-25  RĂ¼diger Sonderfeld  <address@hidden>
 
        * url-vars.el (url): Link to info manual.

=== modified file 'lisp/url/url-cookie.el'
--- a/lisp/url/url-cookie.el    2014-01-01 07:43:34 +0000
+++ b/lisp/url/url-cookie.el    2014-02-05 07:46:40 +0000
@@ -352,9 +352,9 @@
 ;;; 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"))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]