GNU bug report logs -
#27341
eww-search-words should prompt if region inactive
Previous Next
Reported by: Alex Branham <branham <at> utexas.edu>
Date: Mon, 12 Jun 2017 11:22:02 UTC
Severity: minor
Tags: fixed, patch
Fixed in version 26.1
Done: npostavs <at> users.sourceforge.net
Bug is archived. No further changes may be made.
Full log
Message #29 received at 27341 <at> debbugs.gnu.org (full text, mbox):
Alex Branham <branham <at> utexas.edu> writes:
> Actually, we need to check (use-region-p) anyway in case the mark
> hasn't been activated yet in the buffer:
Oops, good catch, I hadn't thought of that.
> Subject: [PATCH] eww-search-words prompt for query if region inactive or blank
>
> ---
Could you add a ChangeLog entry to the commit message as described in
CONTRIBUTE, please?
> (defun eww-search-words (&optional beg end)
> "Search the web for the text between BEG and END.
> -See the `eww-search-prefix' variable for the search engine used."
> + If region is active (and not whitespace), search the web for
> + the text between BEG and END. Else, prompt the user for a search
> + string. See the `eww-search-prefix' variable for the search
> + engine used."
Doc strings shouldn't be indented like that, and there should be a
double space between sentences.
> (interactive "r")
> - (eww (buffer-substring beg end)))
> + (if (use-region-p)
> + (let ((region-string (buffer-substring beg end)))
> + (if (not (string-match-p "\\`[ \n\t\r\v\f]*\\'" region-string))
> + (eww region-string)))
> + (eww (read-string "Query: "))))
This silently does nothing if the region is active but just blanks, did
you mean to fallback to querying in that case?
This bug report was last modified 8 years and 20 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.