From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle Meyer Subject: [Bug] Hanging multiple TAG lines in setup file Date: Thu, 30 Oct 2014 13:46:00 -0400 Message-ID: <8761f1h2nb.fsf@kyleam.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XkEFm-0001Dy-42 for emacs-orgmode@gnu.org; Fri, 31 Oct 2014 11:37:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XjtnP-0004ff-9m for emacs-orgmode@gnu.org; Thu, 30 Oct 2014 13:46:08 -0400 Received: from mail-qc0-f172.google.com ([209.85.216.172]:42146) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XjtnP-0004fX-6K for emacs-orgmode@gnu.org; Thu, 30 Oct 2014 13:46:03 -0400 Received: by mail-qc0-f172.google.com with SMTP id i17so4688899qcy.3 for ; Thu, 30 Oct 2014 10:46:02 -0700 (PDT) Received: from localhost (nat-130-132-173-5.central.yale.edu. [130.132.173.5]) by mx.google.com with ESMTPSA id r6sm7287815qad.18.2014.10.30.10.46.01 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 30 Oct 2014 10:46:01 -0700 (PDT) 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: Org-mode Hello, I'm experiencing a second issue that seems to be introduced by commit 61a241f ('Rewrite setup keywords initialization'). Starting Emacs (24.4) with 'emacs -Q' and with no additional setup besides loading Org, I see the following behavior. Opening test-good.org works as usual. ,---- setup-good.org | #+TAGS: tag1 tag2 | #+TAGS: tag3 tag4 `---- ,---- test-good.org | #+setupfile: setup-good.org | | * heading 1 `---- Opening test-bad.org hangs indefinitely. ,---- setup-bad.org | #+TAGS: tag1 tag2 | #+TAGS: tag3 tag4 | #+TAGS: tag5 tag6 `---- ,---- test-bad.org | #+setupfile: setup-bad.org | | * heading 1 `---- -- Kyle