mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-02 08:22:16 +00:00
6a1f6ee1f8
* lisp/ox.el (org-export-table-dimensions): * lisp/ox-texinfo.el (org-texinfo-template): * lisp/ox-md.el (org-md-link): * lisp/ox-icalendar.el (org-icalendar-use-UTC-date-time-p): * lisp/ox-ascii.el (org-ascii-fixed-width): * lisp/org.el (org-context): * lisp/org-table.el (org-table-eval-formula) (org-table-export): * lisp/org-refile.el: * lisp/org-plot.el (org-plot/gnuplot-to-grid-data): * lisp/org-num.el (org-num): * lisp/org-mouse.el (org-mouse-popup-global-menu) (org-mouse-context-menu): * lisp/org-macro.el (org-macro): * lisp/org-lint.el (org-lint): * lisp/org-keys.el (org-keys): * lisp/org-duration.el: * lisp/org-clock.el (org-clock-get-last-clock-out-time) (org-clock-update-mode-line, org-find-open-clocks): * lisp/org-agenda.el (org-diary) (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item) (org-agenda-highlight-todo, org-cmp-alpha) (org-agenda-filter-by-category): * lisp/ol.el (org-link-expand-abbrev, ol): * lisp/ol-docview.el (ol-docview): * lisp/ol-bibtex.el (org-execute-file-search-in-bibtex) (org-bibtex, org-bibtex-read): * lisp/ol-bbdb.el (org-bbdb-anniversary-description): * lisp/ob-tangle.el (org-babel-tangle-jump-to-org): * lisp/ob-table.el (org-babel-table-truncate-at-newline): * lisp/ob-stan.el: * lisp/ob-sqlite.el (org-babel-sqlite-table-or-scalar): * lisp/ob-sql.el: * lisp/ob-shen.el: * lisp/ob-shell.el (org-babel-prep-session:shell) (org-babel-prep-session:shell): * lisp/ob-sed.el (org-babel-execute:sed) (org-babel-execute:sed): * lisp/ob-screen.el: * lisp/ob-sass.el: * lisp/ob-ruby.el (org-babel-prep-session:ruby) (org-babel-prep-session:ruby): * lisp/ob-ref.el (org-babel-ref-resolve, ob-ref): * lisp/ob-python.el (org-babel-prep-session:python) (org-babel-prep-session:python): * lisp/ob-plantuml.el: * lisp/ob-picolisp.el: * lisp/ob-perl.el: * lisp/ob-org.el: * lisp/ob-octave.el (org-babel-prep-session:octave) (org-babel-prep-session:octave) (org-babel-octave-evaluate-session): * lisp/ob-ocaml.el: * lisp/ob-mscgen.el (org-babel-execute:mscgen) (org-babel-execute:mscgen): * lisp/ob-maxima.el: (ob-maxima): * lisp/ob-matlab.el: * lisp/ob-makefile.el: * lisp/ob-lua.el (org-babel-prep-session:lua) (org-babel-prep-session:lua): * lisp/ob-lisp.el: * lisp/ob-ledger.el: * lisp/ob-latex.el (org-babel-expand-body:latex) (org-babel-expand-body:latex, ob-latex): * lisp/ob-js.el: * lisp/ob-java.el: * lisp/ob-io.el (org-babel-prep-session:io) (org-babel-prep-session:io): * lisp/ob-hledger.el: * lisp/ob-haskell.el: * lisp/ob-groovy.el (org-babel-groovy-wrapper-method) (org-babel-groovy-evaluate): * lisp/ob-gnuplot.el: * lisp/ob-fortran.el (org-babel-expand-body:fortran) (org-babel-expand-body:fortran): * lisp/ob-forth.el (org-babel-forth-session-execute): * lisp/ob-exp.el (ob-exp): * lisp/ob-eval.el: * lisp/ob-emacs-lisp.el: * lisp/ob-ebnf.el: * lisp/ob-dot.el: * lisp/ob-ditaa.el: * lisp/ob-css.el: * lisp/ob-core.el (org-babel-put-rownames): * lisp/ob-coq.el: * lisp/ob-comint.el: * lisp/ob-calc.el: * lisp/ob-awk.el: * lisp/ob-asymptote.el: * lisp/ob-abc.el: * lisp/ob-R.el (org-babel-prep-session:R): Formatting fixes.
81 lines
2.7 KiB
EmacsLisp
81 lines
2.7 KiB
EmacsLisp
;;; ob-coq.el --- Babel Functions for Coq -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2010-2020 Free Software Foundation, Inc.
|
|
|
|
;; Author: Eric Schulte
|
|
;; Keywords: literate programming, reproducible research
|
|
;; Homepage: https://orgmode.org
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Rudimentary support for evaluating Coq code blocks. Currently only
|
|
;; session evaluation is supported. Requires both coq.el and
|
|
;; coq-inferior.el, both of which are distributed with Coq.
|
|
;;
|
|
;; http://coq.inria.fr/
|
|
|
|
;;; Code:
|
|
(require 'ob)
|
|
|
|
(declare-function run-coq "ext:coq-inferior.el" (cmd))
|
|
(declare-function coq-proc "ext:coq-inferior.el" ())
|
|
|
|
(defvar coq-program-name "coqtop"
|
|
"Name of the coq toplevel to run.")
|
|
|
|
(defvar org-babel-coq-buffer "*coq*"
|
|
"Buffer in which to evaluate coq code blocks.")
|
|
|
|
(defun org-babel-coq-clean-prompt (string)
|
|
(if (string-match "^[^[:space:]]+ < " string)
|
|
(substring string 0 (match-beginning 0))
|
|
string))
|
|
|
|
(defun org-babel-execute:coq (body params)
|
|
(let ((full-body (org-babel-expand-body:generic body params))
|
|
(session (org-babel-coq-initiate-session))
|
|
(pt (lambda ()
|
|
(marker-position
|
|
(process-mark (get-buffer-process (current-buffer)))))))
|
|
(org-babel-coq-clean-prompt
|
|
(org-babel-comint-in-buffer session
|
|
(let ((start (funcall pt)))
|
|
(with-temp-buffer
|
|
(insert full-body)
|
|
(comint-send-region (coq-proc) (point-min) (point-max))
|
|
(comint-send-string (coq-proc)
|
|
(if (string= (buffer-substring (- (point-max) 1) (point-max)) ".")
|
|
"\n"
|
|
".\n")))
|
|
(while (equal start (funcall pt)) (sleep-for 0.1))
|
|
(buffer-substring start (funcall pt)))))))
|
|
|
|
(defun org-babel-coq-initiate-session ()
|
|
"Initiate a coq session.
|
|
If there is not a current inferior-process-buffer in SESSION then
|
|
create one. Return the initialized session."
|
|
(unless (fboundp 'run-coq)
|
|
(error "`run-coq' not defined, load coq-inferior.el"))
|
|
(save-window-excursion (run-coq coq-program-name))
|
|
(sit-for 0.1)
|
|
(get-buffer org-babel-coq-buffer))
|
|
|
|
(provide 'ob-coq)
|
|
|
|
;;; ob-coq.el ends here
|