summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenjiro NAKAYAMA <nakayamakenjiro@gmail.com>2013-12-10 19:27:27 -0500
committerTed Zlatanov <tzz@lifelogs.com>2013-12-10 19:27:27 -0500
commitb68cf43cfbfb9591053dc5f616c1a6c1147748dc (patch)
treefe141ccec21fda12aa2cb6a9853376d3dddaa852
parent4cc51eaf0931af5cb17b9b84b97a61612455e818 (diff)
downloademacs-b68cf43cfbfb9591053dc5f616c1a6c1147748dc.tar.gz
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".
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/net/eww.el5
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1b20b1a9410..ae68a2e4bad 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -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
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 9d1c3a26949..8355ce1fb3c 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -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))