emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r115450: eww easy-menu fixes


From: Teodor Zlatanov
Subject: [Emacs-diffs] trunk r115450: eww easy-menu fixes
Date: Wed, 11 Dec 2013 00:28:01 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115450
revision-id: address@hidden
parent: address@hidden
author: Kenjiro NAKAYAMA <address@hidden>
committer: Ted Zlatanov <address@hidden>
branch nick: quickfixes
timestamp: Tue 2013-12-10 19:27:27 -0500
message:
  eww easy-menu fixes
  
  * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
  "Close browser" menu items.  Fix wrong function of "List
  bookmarks".
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/net/eww.el                eww.el-20130610114603-80ap3gwnw4x4m5ix-1
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-12-11 00:11:26 +0000
+++ b/lisp/ChangeLog    2013-12-11 00:27:27 +0000
@@ -1,3 +1,9 @@
+2013-12-11  Kenjiro NAKAYAMA <address@hidden>  (tiny change)
+
+       * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
+       "Close browser" menu items.  Fix wrong function of "List
+       bookmarks".
+
 2013-12-11  Juri Linkov  <address@hidden>
 
        * misearch.el (multi-isearch-buffers): Set the value of

=== modified file 'lisp/net/eww.el'
--- a/lisp/net/eww.el   2013-12-05 16:04:53 +0000
+++ b/lisp/net/eww.el   2013-12-11 00:27:27 +0000
@@ -418,7 +418,8 @@
 
     (easy-menu-define nil map ""
       '("Eww"
-       ["Quit" eww-quit t]
+       ["Exit" eww-quit t]
+       ["Close browser" quit-window t]
        ["Reload" eww-reload t]
        ["Back to previous page" eww-back-url
         :active (not (zerop (length eww-history)))]
@@ -429,7 +430,7 @@
        ["View page source" eww-view-source]
        ["Copy page URL" eww-copy-page-url t]
        ["Add bookmark" eww-add-bookmark t]
-       ["List bookmarks" eww-copy-page-url t]
+       ["List bookmarks" eww-list-bookmarks t]
        ["List cookies" url-cookie-list t]))
     map))
 


reply via email to

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