From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jisang Yoo Subject: lexical-binding is not set for org src mode Date: Wed, 28 Aug 2013 03:53:39 +0900 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37035) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VEOOf-0003BH-O9 for emacs-orgmode@gnu.org; Tue, 27 Aug 2013 14:53:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VEOOb-0007z6-86 for emacs-orgmode@gnu.org; Tue, 27 Aug 2013 14:53:45 -0400 Received: from mail-qe0-x22b.google.com ([2607:f8b0:400d:c02::22b]:56988) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VEOOb-0007yp-4l for emacs-orgmode@gnu.org; Tue, 27 Aug 2013 14:53:41 -0400 Received: by mail-qe0-f43.google.com with SMTP id t7so2825826qeb.2 for ; Tue, 27 Aug 2013 11:53:39 -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: emacs-orgmode elisp code blocks do not recognize lexical-binding in org src edit mode. For example, if I press C-c . on the following block, the buffer does not have lexical-binding set to t. #+BEGIN_SRC elisp ;; -*- lexical-binding: t; -*- (message "%S" lexical-binding) #+END_SRC Is there a workaround?