From: Lars Magne Ingebrigtsen Date: Mon, 17 Nov 2014 18:46:51 +0000 (+0100) Subject: * lisp/bindings.el (search-map): Move `eww-search-words' to `M-s M-w'. X-Git-Tag: emacs-25.0.90~2635^2~437^2~2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=29f81b95885dfce4ef92b93c330cf9057d14745e;p=emacs.git * lisp/bindings.el (search-map): Move `eww-search-words' to `M-s M-w'. --- diff --git a/etc/NEWS b/etc/NEWS index cb34e9b4613..ecbbf747713 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -51,7 +51,7 @@ Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to. ** C-h l now also lists the commands that were run. -** The new M-s M-s key binding uses eww to search the web for the +** The new M-s M-w key binding uses eww to search the web for the text in the region. ** M-x suggests shorthands and ignores obsolete commands for completion. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c30a2dd9b4d..c052a68c61f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2014-11-17 Lars Magne Ingebrigtsen + + * bindings.el (search-map): Move `eww-search-words' to `M-s M-w'. + 2014-11-17 Paul Eggert Port new time stamp handling to old Emacs and to XEmacs. diff --git a/lisp/bindings.el b/lisp/bindings.el index 46ff522c731..110774082e0 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -926,7 +926,7 @@ if `inhibit-field-text-motion' is non-nil." (define-key esc-map "s" search-map) (define-key search-map "o" 'occur) -(define-key search-map "\M-s" 'eww-search-words) +(define-key search-map "\M-w" 'eww-search-words) (define-key search-map "hr" 'highlight-regexp) (define-key search-map "hp" 'highlight-phrase) (define-key search-map "hl" 'highlight-lines-matching-regexp)