From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Agenda filter by any tag seems to be broken Date: Fri, 13 May 2016 11:30:58 +0800 Message-ID: <87oa8a7hxp.fsf@ericabrahamsen.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33838) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2McR-0007IC-IR for emacs-orgmode@gnu.org; Mon, 16 May 2016 13:47:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b2McL-00075L-0A for emacs-orgmode@gnu.org; Mon, 16 May 2016 13:47:50 -0400 Received: from plane.gmane.org ([80.91.229.3]:36494) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2McK-000755-EA for emacs-orgmode@gnu.org; Mon, 16 May 2016 13:47:44 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1b13oy-0001Py-9u for emacs-orgmode@gnu.org; Fri, 13 May 2016 05:31:24 +0200 Received: from 123.116.211.189 ([123.116.211.189]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 May 2016 05:31:24 +0200 Received: from eric by 123.116.211.189 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 May 2016 05:31:24 +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" To: emacs-orgmode@gnu.org Is anyone else seeing this? Go into a tags-type agenda, hit "/" to start filtering, then SPC for "filter to any tag". That gives me this backtrace: Debugger entered--Lisp error: (args-out-of-range "" 0 1) substring("" 0 1) (equal "{" (substring tag 0 1)) (and (equal "{" (substring tag 0 1)) (equal "}" (substring tag -1))) org-agenda-filter-make-matcher-tag-exp(("+") 43) Once ("+") is added to `org-agenda-tag-filter', all subsequent filtering actions will fail, until you remove all filters with "/ /". `org-agenda-filter-make-matcher-tag-exp' always removes the first character of the tag-matcher string, and then operates on what's left. In the case of "+", nothing's left! Thanks, Eric