From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Leo Alekseyev Newsgroups: gmane.emacs.help Subject: Turning off flyspell programmatically for source blocks in Org mode Date: Mon, 13 Feb 2012 03:18:47 -0500 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1329121185 26272 80.91.229.3 (13 Feb 2012 08:19:45 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 13 Feb 2012 08:19:45 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Feb 13 09:19:45 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Rwr8S-0002d6-Vn for geh-help-gnu-emacs@m.gmane.org; Mon, 13 Feb 2012 09:19:45 +0100 Original-Received: from localhost ([::1]:39369 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rwr8P-0008LT-CL for geh-help-gnu-emacs@m.gmane.org; Mon, 13 Feb 2012 03:19:41 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:49687) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rwr8H-0008LJ-Uj for help-gnu-emacs@gnu.org; Mon, 13 Feb 2012 03:19:37 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rwr7Y-0003C8-29 for help-gnu-emacs@gnu.org; Mon, 13 Feb 2012 03:19:33 -0500 Original-Received: from mail-pz0-f41.google.com ([209.85.210.41]:59506) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rwr7X-0003Bw-Q8 for help-gnu-emacs@gnu.org; Mon, 13 Feb 2012 03:18:48 -0500 Original-Received: by dadv6 with SMTP id v6so4490408dad.0 for ; Mon, 13 Feb 2012 00:18:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=MX/OwUOVv1NgUd8ZWo7C4fQcNnxprVdjS60ApzErBeE=; b=bAmvEqbAM/uLo8qpCNvtxReXANsPsFpiuFXZjtJjj1mSCwogeF06zVOy4Y1FxM9aGs rsE/0rcZbQs+LpCr4BbXjbKeb6jt03PHdDcV3hv89NcyhTuQlxKQsi6hM9cSSUq/EwlN McOSP3R6LKSo8mDEwAIkSYpDYsbYriKBjXHJU= Original-Received: by 10.68.211.132 with SMTP id nc4mr24674790pbc.109.1329121127144; Mon, 13 Feb 2012 00:18:47 -0800 (PST) Original-Received: by 10.143.68.14 with HTTP; Mon, 13 Feb 2012 00:18:47 -0800 (PST) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.210.41 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:83727 Archived-At: When I use Flyspell with org-mode, it often insists on spell-checking my code, which is nice, but annoying. How might one prevent flyspell from operating on code blocks in org, given that they are clearly delimited with lines #+begin_src [language] and #+end_src? I've tried adding ("+begin_src" . "+end_src") to ispell-skip-region-alist, but it didn't seem to work. Appreciate any suggestions!