From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Holst Subject: Re: Multi string search of org entries Date: Mon, 9 Jan 2012 10:27:06 +0100 Message-ID: References: <87vcoqzcf2.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=Multipart0o0o0o0o0o0o0o" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:56442) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RkBbS-0003sQ-RK for emacs-orgmode@gnu.org; Mon, 09 Jan 2012 04:33:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RkBbM-0005uw-PZ for emacs-orgmode@gnu.org; Mon, 09 Jan 2012 04:33:18 -0500 Received: from imta22.fe.bosch.de ([139.15.243.26]:37168) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RkBbM-0005un-Kn for emacs-orgmode@gnu.org; Mon, 09 Jan 2012 04:33:12 -0500 Received: from smtp2-v.fe.bosch.de (imta23.fe.bosch.de [139.15.243.227]) by imta22.fe.bosch.de (Postfix) with ESMTP id F25A03FE8F3F for ; Mon, 9 Jan 2012 10:29:39 +0100 (CET) In-Reply-To: (adatgyujto@gmail.com's message of "Thu, 5 Jan 2012 15:48:45 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Tom Cc: "emacs-orgmode@gnu.org" --=Multipart0o0o0o0o0o0o0o Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi Tom, =B7 On Jan 05 2012, Tom wrote: > Bastien altern.org> writes: > >>=20 >> Please feel free to suggest any better description, I=20 >> just took the one from the commentary section of the .el >> file. > > They look fine to me which is not suprising, because I wrote these > descriptions in the first place. :) I downloaded org-search-goto-ml.el and tried (require 'org-search-goto-ml) which failed. This is because of the (provide ...) statement. Attached is a patch which corrects this line. --=20 Mit freundlichen Gr=FC=DFen / Best regards=20 Thomas Holst=20 --=Multipart0o0o0o0o0o0o0o Content-Type: text/x-patch Content-Disposition: attachment; filename="0001-org-search-goto-ml.el-corrected-the-proviede-stateme.patch" Content-Description: patch >From 42aa4ffcb6e36d3cf4df1c24796a6ae4c995052f Mon Sep 17 00:00:00 2001 From: Thomas Holst Date: Mon, 9 Jan 2012 10:20:58 +0100 Subject: [PATCH] org-search-goto-ml.el: corrected the proviede statement --- org-search-goto-ml.el | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org-search-goto-ml.el b/org-search-goto-ml.el index 52b473a..4668401 100755 --- a/org-search-goto-ml.el +++ b/org-search-goto-ml.el @@ -298,5 +298,5 @@ -(provide 'org-search-goto) -;;; org-search-goto.el ends here +(provide 'org-search-goto-ml) +;;; org-search-goto-ml.el ends here -- 1.7.5.1 --=Multipart0o0o0o0o0o0o0o--