From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Memnon Anon Newsgroups: gmane.emacs.help Subject: Re: Searching across line breaks Date: Tue, 19 Jul 2011 13:45:02 +0000 (UTC) Message-ID: <87r55m9ytr.fsf@mean.albasani.net> References: <32080601.post@talk.nabble.com> <4E23F34B.80108@easy-emacs.de> <32082295.post@talk.nabble.com> <4E247025.9020207@easy-emacs.de> <7E392E8A-40C7-4F0E-94E6-798AB6C91E40@Web.DE> <4E251678.9050807@easy-emacs.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: dough.gmane.org 1311084884 11661 80.91.229.12 (19 Jul 2011 14:14:44 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 19 Jul 2011 14:14:44 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jul 19 16:14:41 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QjB4K-00080I-SE for geh-help-gnu-emacs@m.gmane.org; Tue, 19 Jul 2011 16:14:41 +0200 Original-Received: from localhost ([::1]:36841 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjB4J-0005Gd-D6 for geh-help-gnu-emacs@m.gmane.org; Tue, 19 Jul 2011 10:14:39 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:37062) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjB0f-0004pQ-RX for help-gnu-emacs@gnu.org; Tue, 19 Jul 2011 10:10:57 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QjB0a-0001NF-0D for help-gnu-emacs@gnu.org; Tue, 19 Jul 2011 10:10:53 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:38282) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjB0Z-0001Mx-HY for help-gnu-emacs@gnu.org; Tue, 19 Jul 2011 10:10:47 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QjAbv-000884-AD for help-gnu-emacs@gnu.org; Tue, 19 Jul 2011 15:45:19 +0200 Original-Received: from e178209034.adsl.alicedsl.de ([85.178.209.34]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 19 Jul 2011 15:45:19 +0200 Original-Received: from gegendosenfleisch by e178209034.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 19 Jul 2011 15:45:19 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 28 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: e178209034.adsl.alicedsl.de Cancel-Lock: sha1:TlR9oPfdbroq/aGqpWOR9rCnf5w= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 80.91.229.12 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:81677 Archived-At: Andreas Röhler writes: > Am 18.07.2011 20:58, schrieb Peter Dyballa: >>> the newline-expression in the regexp must be typed \C-o inside the minibuffer, ie inserted literarly >> Shouldn't it be C-j or C-q C-j? C-j is dec 10, oct 12, hex 0A, UTF U+000A LINE FEED (LF). (C-o is SHIFT IN.) > Hm, de facto that works for me, I'm doing \C-o here. Which was hard to > figure out at the beginning with Emacs BTW. `C-h r' `C-s C-q C-j' `C-s': ,----[ (info "(emacs)Minibuffer Edit") ] | Since in the minibuffer is defined to exit the minibuffer, you | can't use it to insert a newline in the minibuffer. To do that, type | `C-o' or `C-q C-j'. (The newline character is really the ASCII | character control-J.) `---- So, both of you are right. FWIF, I learned `C-q C-j', because it was easier to remember once I knew what `C-q' does, thusly avoiding the "hard to figure out at the beginning" bit. Memnon