Fix #4563: ob-c.elc failed to provide feature ob-c
Due to case shenanigans, ob-C.el's feature name is ob-C, not ob-c, preventing folks from using 'c' (lowercase) as a language name for org babel blocks.
This commit is contained in:
parent
dec15832de
commit
c339bb0929
1 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
||||||
;;; lang/org/config.el -*- lexical-binding: t; -*-
|
;;; lang/org/config.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(defvar +org-babel-mode-alist
|
(defvar +org-babel-mode-alist
|
||||||
'((cpp . C)
|
'((c . C)
|
||||||
|
(cpp . C)
|
||||||
(C++ . C)
|
(C++ . C)
|
||||||
(D . C)
|
(D . C)
|
||||||
(elisp . emacs-lisp)
|
(elisp . emacs-lisp)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue