From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Bastien Newsgroups: gmane.emacs.help Subject: Re: org-babel: how to evaluate code block with "alias" language? Date: Wed, 23 Nov 2022 21:35:36 +0100 Organization: GNU Message-ID: <875yf54dev.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="8072"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: help-gnu-emacs To: North Year Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Wed Nov 23 21:36:21 2022 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oxwTk-0001t2-9T for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 23 Nov 2022 21:36:20 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oxwTC-00053Y-0l; Wed, 23 Nov 2022 15:35:46 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oxwT8-000533-Me for help-gnu-emacs@gnu.org; Wed, 23 Nov 2022 15:35:42 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oxwT7-0005li-Vf; Wed, 23 Nov 2022 15:35:41 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=q/W6ruDvMzuUClGXqkcgvNL67TLezwiZIcVr+Mq6l/k=; b=bzV+wjv+n6DiE6ki1wL6 xkSZbwaQeltvlUvYBd6Coc7tR8qQDHlTI/OoYqT8fnSIyfNYq+EpZyaoppcxlbQZ5Iyv/qHBqkJn3 EPzpA4twlpNj4JE056q6vSFJxPW8YbUcjCd7EU1ASHEgK2gJk6LmNL+pP9yG1j3sXkNKW/kGDVX7l J+EeRauc/25CFw4EDCcd94eGUNL+HyFmVp4vzedtIyga0rwNVEkce3fVK2N+pUNYJeJ6eVGOqAOqj I19tequvkylkrDlSD8bFw0zxDwKrVaDZksCp1MwpqZnY9h4Ix4YeTRWser/OeqYjTfX6nP6CU2CZ3 fTPQkDuC5+41xA==; Original-Received: from 76.60.140.77.rev.sfr.net ([77.140.60.76] helo=hal) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oxwT7-0003xj-Hy; Wed, 23 Nov 2022 15:35:41 -0500 Original-Received: by hal (Postfix, from userid 1000) id A79E41E040F; Wed, 23 Nov 2022 21:35:36 +0100 (CET) In-Reply-To: (North Year's message of "Tue, 22 Nov 2022 15:29:02 -0500") X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:141119 Archived-At: Hi North, North Year writes: > #+begin_src emacs-lisp > (org-babel-do-load-languages > 'org-babel-load-languages > '((r . t))) > #+end_src I suggest you try with an uppercase "R": #+begin_src emacs-lisp (org-babel-do-load-languages 'org-babel-load-languages '((R . t))) #+end_src If Org's documentation is not accurate about this, please report a bug with M-x org-submit-bug-report RET. -- Bastien