unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Juri Linkov <juri@jurta.org>
To: emacs-devel@gnu.org
Subject: Re: Calling occur from within isearch
Date: Thu, 22 Nov 2007 21:04:48 +0200	[thread overview]
Message-ID: <871wairv6n.fsf@jurta.org> (raw)
In-Reply-To: <yoij63zvunns.fsf@remote4.student.chalmers.se> ("Johan Bockgård"'s message of "Thu, 22 Nov 2007 01:30:47 +0100")

>> +   (let ((case-fold-search isearch-case-fold-search))
>
> isearch-case-fold-search is almost but not quite the same as
> case-fold-search. Cf isearch-no-upper-case-p.
>
>     ; case-fold-search while searching.
>     ;   either nil, t, or 'yes.  'yes means the same as t except that mixed
>     ;   case in the search string is ignored.
>     (defvar isearch-case-fold-search nil)

Right, below is a more correct patch:

Index: lisp/isearch.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/isearch.el,v
retrieving revision 1.306
diff -c -r1.306 isearch.el
*** lisp/isearch.el	10 Nov 2007 23:03:24 -0000	1.306
--- lisp/isearch.el	22 Nov 2007 19:02:59 -0000
***************
*** 1256,1265 ****
--- 1257,1276 ----
    (interactive)
    (isearch-query-replace t))
  
+ (defun isearch-occur (regexp &optional nlines)
+   "Run `occur' with regexp to search from the current search string.
+ Interactively, REGEXP is the current search regexp or a quoted search
+ string.  NLINES has the same meaning as in `occur'."
+   (interactive
+    (list
+     (if isearch-regexp isearch-string (regexp-quote isearch-string))
+     (if current-prefix-arg (prefix-numeric-value current-prefix-arg))))
+   (let ((case-fold-search isearch-case-fold-search))
+     (if (and (eq case-fold-search t) search-upper-case)
+ 	(setq case-fold-search
+ 	      (isearch-no-upper-case-p isearch-string isearch-regexp)))
+     (occur regexp nlines)))
+ 
  \f
  (defun isearch-delete-char ()
    "Discard last input item and move point back.

-- 
Juri Linkov
http://www.jurta.org/emacs/

  reply	other threads:[~2007-11-22 19:04 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-21 19:57 Calling occur from within isearch Lennart Borgman (gmail)
2007-11-21 20:03 ` Juri Linkov
2007-11-21 20:25   ` Lennart Borgman (gmail)
2007-11-22 19:08     ` Juri Linkov
2007-11-22 19:38       ` Drew Adams
2007-11-22 21:48       ` Lennart Borgman (gmail)
2007-11-22  0:30   ` Johan Bockgård
2007-11-22 19:04     ` Juri Linkov [this message]
2007-11-23  0:52       ` Juri Linkov
2007-11-23  1:05       ` Johan Bockgård
2007-11-24 17:45         ` Juri Linkov
2007-11-25  3:42           ` Richard Stallman
2007-11-25 15:27             ` Juri Linkov
2007-12-03  0:37               ` Juri Linkov
2007-12-03 18:43                 ` Richard Stallman
2007-12-05 22:17                   ` Juri Linkov
2007-12-06  1:29                     ` Johan Bockgård
2007-12-03 23:25           ` Johan Bockgård
2007-12-04  0:27             ` Juri Linkov
2007-12-04  1:24               ` Johan Bockgård
2007-12-04 22:43                 ` Juri Linkov
2007-12-04 23:59                   ` Johan Bockgård
2007-12-05 22:16                     ` Juri Linkov
2007-12-04 10:35               ` Andreas Schwab
2007-11-21 20:07 ` Drew Adams
2007-11-22 16:21 ` Richard Stallman
2007-11-22 18:16   ` Stefan Monnier
2007-11-22 19:05     ` Juri Linkov
2007-11-22 21:23       ` Stefan Monnier
2007-11-22 19:05   ` Juri Linkov
2007-11-23  4:35     ` Richard Stallman
2007-11-24 17:45       ` Juri Linkov
2007-11-25  3:42         ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=871wairv6n.fsf@jurta.org \
    --to=juri@jurta.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).