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:
Henrik Lissner 2021-04-17 00:08:29 -04:00
parent dec15832de
commit c339bb0929

View file

@ -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)