From mboxrd@z Thu Jan 1 00:00:00 1970 From: ajk@iu.edu (Andrew J. Korty) Subject: Re: possible bug in version 5.08 Date: Fri, 14 Sep 2007 08:20:01 -0400 Message-ID: References: <200709140325.l8E3Poj15236@anon.securenym.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IWAmL-000607-R4 for emacs-orgmode@gnu.org; Fri, 14 Sep 2007 09:00:13 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IWAmG-0005yE-Dp for emacs-orgmode@gnu.org; Fri, 14 Sep 2007 09:00:12 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IWAmG-0005y1-0u for emacs-orgmode@gnu.org; Fri, 14 Sep 2007 09:00:08 -0400 Received: from locrian.itso.iu.edu ([149.166.143.64]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IWAmF-0006JZ-Ky for emacs-orgmode@gnu.org; Fri, 14 Sep 2007 09:00:07 -0400 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: emacs-orgmode@gnu.org "McKelvie" writes: > version 5.04 allows my to file quick notes away using remember. On > upgrading to 5.08, when I try typing in my template hot key I get the > error, Wrong type argument: stringp, nil. It works fine in 5.04. Sounds like a problem I was having which came down to org-remember-apply-template expecting remember's global `annotation' variable to be non-nil. I temporarily (and unartfully) fixed it with ,---- | (defadvice org-remember-apply-template | (around ajk/fix-org-remember-apply-template activate compile) | (with-no-warnings | (if annotation | ad-do-it | (let ((annotation "")) | ad-do-it)))) `---- -- Andrew J. Korty, Deputy Information Security Officer Office of the Vice President for Information Technology and CIO Indiana University