update packages and add valign
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
;;; ob-emacs-lisp.el --- Babel Functions for Emacs-lisp Code -*- lexical-binding: t; -*-
|
||||
|
||||
;; Copyright (C) 2009-2025 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2026 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Eric Schulte
|
||||
;; Keywords: literate programming, reproducible research
|
||||
@@ -32,11 +32,6 @@
|
||||
|
||||
(require 'ob-core)
|
||||
|
||||
(declare-function org-babel--get-vars "ob" (params))
|
||||
(declare-function org-babel-result-cond "ob" (result-params scalar-form &rest table-forms))
|
||||
(declare-function org-babel-reassemble-table "ob" (table colnames rownames))
|
||||
(declare-function org-babel-pick-name "ob" (names selector))
|
||||
|
||||
(defconst org-babel-header-args:emacs-lisp '((lexical . :any))
|
||||
"Emacs-lisp specific header arguments.")
|
||||
|
||||
@@ -102,7 +97,7 @@ Convert LEXICAL into the form appropriate for `lexical-binding'
|
||||
and the LEXICAL argument to `eval'."
|
||||
(if (listp lexical)
|
||||
lexical
|
||||
(not (null (member lexical '("yes" "t"))))))
|
||||
(not (null (member lexical '("yes" "t" t))))))
|
||||
|
||||
(defun org-babel-edit-prep:emacs-lisp (info)
|
||||
"Set `lexical-binding' in Org edit buffer.
|
||||
|
||||
Reference in New Issue
Block a user