From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marc Ihm Subject: Re: Error when using org-ctrl-c-ctrl-c to add tags Date: Sun, 19 Apr 2015 18:05:45 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YjrjA-0007fy-6S for emacs-orgmode@gnu.org; Sun, 19 Apr 2015 12:05:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yjrj6-0004Yi-68 for emacs-orgmode@gnu.org; Sun, 19 Apr 2015 12:05:48 -0400 Received: from smtp04.udag.de ([62.146.106.30]:56146) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yjrj5-0004Ya-W4 for emacs-orgmode@gnu.org; Sun, 19 Apr 2015 12:05:44 -0400 In-Reply-To: (Marc Ihm's message of "Sun, 19 Apr 2015 16:36:37 +0200") 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: Vicente Vera Cc: emacs-orgmode , rasmus@gmx.us Okay, this one only tries to fix, what seems broken ... Could someone please check ? best regards Marc diff --git a/lisp/org.el b/lisp/org.el index 24b3a69..8a00847 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -10515,8 +10515,7 @@ from." completing-read-function) 'completing-read))) (concat (car args)) - (if (and (consp (nth 1 args)) - (consp (car (nth 1 args)))) + (if (consp (car (nth 1 args))) (mapcar 'car (nth 1 args)) (nth 1 args)) (cddr args)))))