From mboxrd@z Thu Jan 1 00:00:00 1970 From: cberry@tajo.ucsd.edu Subject: org-html-link problem Date: Wed, 06 Feb 2013 21:46:13 -0800 Message-ID: <87wqukr80q.fsf@tajo.ucsd.edu> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:38303) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U3KJa-0003qs-Du for emacs-orgmode@gnu.org; Thu, 07 Feb 2013 00:46:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U3KJZ-0008UA-Co for emacs-orgmode@gnu.org; Thu, 07 Feb 2013 00:46:30 -0500 Received: from plane.gmane.org ([80.91.229.3]:35710) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U3KJZ-0008U0-5w for emacs-orgmode@gnu.org; Thu, 07 Feb 2013 00:46:29 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1U3KJo-0004pL-0P for emacs-orgmode@gnu.org; Thu, 07 Feb 2013 06:46:44 +0100 Received: from tajo.ucsd.edu ([137.110.122.165]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 07 Feb 2013 06:46:44 +0100 Received: from cberry by tajo.ucsd.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 07 Feb 2013 06:46:44 +0100 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: emacs-orgmode@gnu.org M-x org-export-dispatch RET h H terminates with an error ,---- | | * https link | | | Here is the | [[https://github.com/downloads/yihui/knitr/knitr-minimal.html][link]] | `---- The problem seems to be here: lisp/ox-html.el around line 2172: (unless (and desc (string-match (regexp-quote (car att)) desc)) att is nil maybe (unless (and att desc (string-match (regexp-quote (car att)) desc))?? Chuck