From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: How to disconnect "remember" with "org-remember"? Date: Sun, 3 May 2009 20:48:45 +0200 Message-ID: <9085BC42-19D1-44F4-8CBE-F3A695CD06F6@gmail.com> References: <49FB90BB.4080907@gmail.com> Mime-Version: 1.0 (Apple Message framework v930.3) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M0gkA-0001YV-7k for emacs-orgmode@gnu.org; Sun, 03 May 2009 14:48:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M0gk4-0001VT-Kx for emacs-orgmode@gnu.org; Sun, 03 May 2009 14:48:52 -0400 Received: from [199.232.76.173] (port=38113 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M0gk4-0001VQ-Ff for emacs-orgmode@gnu.org; Sun, 03 May 2009 14:48:48 -0400 Received: from ey-out-1920.google.com ([74.125.78.149]:31414) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M0gk4-0005SE-3e for emacs-orgmode@gnu.org; Sun, 03 May 2009 14:48:48 -0400 Received: by ey-out-1920.google.com with SMTP id 13so683127eye.24 for ; Sun, 03 May 2009 11:48:47 -0700 (PDT) In-Reply-To: <49FB90BB.4080907@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Wei-Wei Guo Cc: emacs-orgmode@gnu.org On May 2, 2009, at 2:15 AM, Wei-Wei Guo wrote: > Dear all, > > I set two different usages for remember, one is the plain remember, > the other > is the org-remember. > > (defun ww/plain () > "Writing diary or notes." > (interactive) > (setq remember-handler-functions 'nil) > (remember)) > > (defun ww/schedule () > "Recoding tasks or appointments." > (interactive) > (setq org-remember-store-without-prompt t) > (org-remember-insinuate) > (org-remember)) > > After I run ww/schedule, the (remember) and ww/plain become a call > of org-remember. > It seems (org-remember) will take over (remember). Can I change the > behavior? Yes, org-remember-insinuate does this, and is supposed to do this. What is the problem? - Carsten