]> git.eshelyaron.com Git - emacs.git/commitdiff
eww easy-menu fixes
authorKenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
Wed, 11 Dec 2013 00:27:27 +0000 (19:27 -0500)
committerTed Zlatanov <tzz@lifelogs.com>
Wed, 11 Dec 2013 00:27:27 +0000 (19:27 -0500)
* net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
"Close browser" menu items.  Fix wrong function of "List
bookmarks".

lisp/ChangeLog
lisp/net/eww.el

index 1b20b1a9410e9be2fc38bf71de14f3c904483780..ae68a2e4badbdfbb211c3cbb753b5ad7b2d5b949 100644 (file)
@@ -1,3 +1,9 @@
+2013-12-11  Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>  (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  <juri@jurta.org>
 
        * misearch.el (multi-isearch-buffers): Set the value of
index 9d1c3a26949fbb7d4c145d87e0cb9f9ef139a692..8355ce1fb3cd0d041f8e28edb74b69bceb0595cc 100644 (file)
@@ -418,7 +418,8 @@ word(s) will be searched for via `eww-search-prefix'."
 
     (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 @@ word(s) will be searched for via `eww-search-prefix'."
        ["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))