mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
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:
@ -1,7 +1,8 @@
|
||||
;;; lang/org/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
(defvar +org-babel-mode-alist
|
||||
'((cpp . C)
|
||||
'((c . C)
|
||||
(cpp . C)
|
||||
(C++ . C)
|
||||
(D . C)
|
||||
(elisp . emacs-lisp)
|
||||
|
Reference in New Issue
Block a user