From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Subject: Fix commit 9ff7f80f51a15c4a3dd2b654f0b08e9e290f5375 Date: Tue, 02 Aug 2011 01:22:35 +0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:32952) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QnwCd-0002tE-Ov for emacs-orgmode@gnu.org; Mon, 01 Aug 2011 13:22:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QnwCc-00047g-7A for emacs-orgmode@gnu.org; Mon, 01 Aug 2011 13:22:55 -0400 Received: from lo.gmane.org ([80.91.229.12]:39815) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QnwCb-00047c-Vo for emacs-orgmode@gnu.org; Mon, 01 Aug 2011 13:22:54 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QnwCa-0007qN-PL for emacs-orgmode@gnu.org; Mon, 01 Aug 2011 19:22:52 +0200 Received: from 222.130.139.86 ([222.130.139.86]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 01 Aug 2011 19:22:52 +0200 Received: from sdl.web by 222.130.139.86 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 01 Aug 2011 19:22:52 +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: emacs-orgmode@gnu.org I am running org mode from trunk. I am getting this error: ,---- | org-babel-pop-to-session-maybe: Symbol's value as variable is void: | org-babel-inline-src-block-regexp `---- for M-up/down. The error was introduced in http://orgmode.org/w/?p=org-mode.git;a=commitdiff;h=9ff7f80f51a15c4a3dd2b654f0b08e9e290f5375 Please apply this patch to fix the bug: --- a/ob.el +++ b/ob.el @@ -141,7 +141,7 @@ "\\([^\000]*?\n\\)?[ \t]*#\\+end_src") "Regexp used to identify code blocks.") -(eval-when-compile +(eval-and-compile (defvar org-babel-inline-src-block-regexp (concat ;; (1) replacement target (2) lang Diff finished. Tue Aug 2 01:18:06 2011 Leo