mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2025-02-02 20:55:13 +00:00
babel: more compiler cleanup -- now only throwing 1 warning (which doesn't make sense anyways)
This commit is contained in:
parent
a86734f526
commit
32c985ffd9
@ -36,8 +36,6 @@
|
||||
(require 'ob)
|
||||
(require 'comint)
|
||||
|
||||
(declare-function org-babel-get-src-block-info "ob" (&optional hvo))
|
||||
|
||||
(defun org-babel-comint-buffer-livep (buffer)
|
||||
"Check if BUFFER is a comint buffer with a live process."
|
||||
(let ((buffer (if buffer (get-buffer buffer))))
|
||||
@ -69,8 +67,8 @@ or user `keyboard-quit' during execution of body."
|
||||
(declare (indent 1))
|
||||
(let ((buffer (car meta))
|
||||
(eoe-indicator (cadr meta))
|
||||
(remove-echo (caddr meta))
|
||||
(full-body (cadddr meta)))
|
||||
(remove-echo (cadr (cdr meta)))
|
||||
(full-body (cadr (cdr (cdr meta)))))
|
||||
`(org-babel-comint-in-buffer ,buffer
|
||||
(let ((string-buffer "") dangling-text)
|
||||
(flet ((my-filt (text)
|
||||
|
@ -34,8 +34,6 @@
|
||||
(eval-when-compile
|
||||
(require 'cl))
|
||||
|
||||
(declare-function org-babel-get-src-block-info "ob" (&optional hvo))
|
||||
|
||||
(defvar obe-marker nil)
|
||||
(defvar org-current-export-file)
|
||||
(defvar org-babel-lob-one-liner-regexp)
|
||||
|
@ -34,8 +34,6 @@
|
||||
;;; Code:
|
||||
(require 'ob)
|
||||
|
||||
(declare-function org-babel-get-src-block-info "ob" (&optional hvo))
|
||||
|
||||
(defvar org-babel-key-prefix "\C-c\C-v"
|
||||
"The `org-babel-key-prefix' variable holds the key prefix
|
||||
behind which all org-babel interactive key-binding are placed.
|
||||
|
@ -33,8 +33,6 @@
|
||||
(require 'ob-table)
|
||||
(require 'ob-exp)
|
||||
|
||||
(declare-function org-babel-get-src-block-info "ob" (&optional hvo))
|
||||
|
||||
(defvar org-babel-library-of-babel nil
|
||||
"Library of source-code blocks. This is an association list.
|
||||
Populate the library by adding files to `org-babel-lob-files'.")
|
||||
|
@ -56,8 +56,6 @@
|
||||
(eval-when-compile
|
||||
(require 'cl))
|
||||
|
||||
(declare-function org-babel-get-src-block-info "ob" (&optional hvo))
|
||||
|
||||
(defun org-babel-ref-variables (params)
|
||||
"Takes a parameter alist, and return an alist of variable
|
||||
names, and the emacs-lisp representation of the related value."
|
||||
|
@ -55,8 +55,6 @@
|
||||
;;; Code:
|
||||
(require 'ob)
|
||||
|
||||
(declare-function org-babel-get-src-block-info "ob" (&optional hvo))
|
||||
|
||||
(defun org-babel-table-truncate-at-newline (string)
|
||||
"If STRING ends in a newline character, then remove the newline
|
||||
character and replace it with ellipses."
|
||||
|
@ -33,8 +33,6 @@
|
||||
(eval-when-compile
|
||||
(require 'cl))
|
||||
|
||||
(declare-function org-babel-get-src-block-info "ob" (&optional hvo))
|
||||
|
||||
(defvar org-babel-tangle-langs nil
|
||||
"List of languages supported by `org-babel-tangle'. The first
|
||||
element of each language's list is a string indicating the name
|
||||
|
@ -49,6 +49,16 @@
|
||||
(declare-function tramp-file-name-user "tramp" (vec))
|
||||
(declare-function tramp-file-name-host "tramp" (vec))
|
||||
|
||||
(defvar org-babel-source-name-regexp
|
||||
"^[ \t]*#\\+\\(srcname\\|source\\|function\\):[ \t]*"
|
||||
"Regular expression used to match a source name line.")
|
||||
|
||||
(defvar org-babel-src-block-regexp nil
|
||||
"Regexp used to test when inside of a org-babel src-block")
|
||||
|
||||
(defvar org-babel-inline-src-block-regexp nil
|
||||
"Regexp used to test when on an inline org-babel src-block")
|
||||
|
||||
(defun org-babel-get-src-block-info (&optional header-vars-only)
|
||||
"Get information of the current source block.
|
||||
|
||||
@ -176,22 +186,12 @@ header arguments as well.")
|
||||
(defvar org-babel-current-buffer-properties)
|
||||
(make-variable-buffer-local 'org-babel-current-buffer-properties)
|
||||
|
||||
(defvar org-babel-src-block-regexp nil
|
||||
"Regexp used to test when inside of a org-babel src-block")
|
||||
|
||||
(defvar org-babel-inline-src-block-regexp nil
|
||||
"Regexp used to test when on an inline org-babel src-block")
|
||||
|
||||
(defvar org-babel-result-regexp
|
||||
"^[ \t]*#\\+res\\(ults\\|name\\)\\(\\[\\([[:alnum:]]+\\)\\]\\)?\\:"
|
||||
"Regular expression used to match result lines. If the
|
||||
results are associated with a hash key then the hash will be
|
||||
saved in the second match data.")
|
||||
|
||||
(defvar org-babel-source-name-regexp
|
||||
"^[ \t]*#\\+\\(srcname\\|source\\|function\\):[ \t]*"
|
||||
"Regular expression used to match a source name line.")
|
||||
|
||||
(defvar org-babel-min-lines-for-block-output 10
|
||||
"If number of lines of output is equal to or exceeds this
|
||||
value, the output is placed in a #+begin_example...#+end_example
|
||||
|
Loading…
x
Reference in New Issue
Block a user