aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenjiro NAKAYAMA2013-12-10 19:27:27 -0500
committerTed Zlatanov2013-12-10 19:27:27 -0500
commitb68cf43cfbfb9591053dc5f616c1a6c1147748dc (patch)
treefe141ccec21fda12aa2cb6a9853376d3dddaa852
parent4cc51eaf0931af5cb17b9b84b97a61612455e818 (diff)
downloademacs-b68cf43cfbfb9591053dc5f616c1a6c1147748dc.tar.gz
emacs-b68cf43cfbfb9591053dc5f616c1a6c1147748dc.zip
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 @@
12013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com> (tiny change)
2
3 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
4 "Close browser" menu items. Fix wrong function of "List
5 bookmarks".
6
12013-12-11 Juri Linkov <juri@jurta.org> 72013-12-11 Juri Linkov <juri@jurta.org>
2 8
3 * misearch.el (multi-isearch-buffers): Set the value of 9 * 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'."
418 418
419 (easy-menu-define nil map "" 419 (easy-menu-define nil map ""
420 '("Eww" 420 '("Eww"
421 ["Quit" eww-quit t] 421 ["Exit" eww-quit t]
422 ["Close browser" quit-window t]
422 ["Reload" eww-reload t] 423 ["Reload" eww-reload t]
423 ["Back to previous page" eww-back-url 424 ["Back to previous page" eww-back-url
424 :active (not (zerop (length eww-history)))] 425 :active (not (zerop (length eww-history)))]
@@ -429,7 +430,7 @@ word(s) will be searched for via `eww-search-prefix'."
429 ["View page source" eww-view-source] 430 ["View page source" eww-view-source]
430 ["Copy page URL" eww-copy-page-url t] 431 ["Copy page URL" eww-copy-page-url t]
431 ["Add bookmark" eww-add-bookmark t] 432 ["Add bookmark" eww-add-bookmark t]
432 ["List bookmarks" eww-copy-page-url t] 433 ["List bookmarks" eww-list-bookmarks t]
433 ["List cookies" url-cookie-list t])) 434 ["List cookies" url-cookie-list t]))
434 map)) 435 map))
435 436