diff options
| author | Glenn Morris | 2010-08-17 00:29:26 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-08-17 00:29:26 -0700 |
| commit | f1eee0b6849bc5edf60a3c30cc8f71d70e3df837 (patch) | |
| tree | 66eff5aa26ad25c01a4a92e4be49e68253393cfa /lisp/org/ob-R.el | |
| parent | 10506f644ac5937c9e7aa667f7da99061bb17889 (diff) | |
| download | emacs-f1eee0b6849bc5edf60a3c30cc8f71d70e3df837.tar.gz emacs-f1eee0b6849bc5edf60a3c30cc8f71d70e3df837.zip | |
Fix some Org errors revealed by `make check-declare'.
* ob.el (tramp-compat-make-temp-file, org-edit-src-code)
(org-entry-get, org-table-import): Fix declarations.
(org-match-string-no-properties): Remove declaration.
* ob-sh.el (org-babel-comint-in-buffer)
(org-babel-comint-wait-for-output, org-babel-comint-buffer-livep)
(org-babel-comint-with-output): Remove unnecessary declarations.
* ob-R.el (orgtbl-to-tsv): Fix declaration.
* org-list.el (org-entry-get): Fix declaration.
Diffstat (limited to 'lisp/org/ob-R.el')
| -rw-r--r-- | lisp/org/ob-R.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/ob-R.el b/lisp/org/ob-R.el index 105862c1571..d990d69b357 100644 --- a/lisp/org/ob-R.el +++ b/lisp/org/ob-R.el | |||
| @@ -33,7 +33,7 @@ | |||
| 33 | (require 'ob-eval) | 33 | (require 'ob-eval) |
| 34 | (eval-when-compile (require 'cl)) | 34 | (eval-when-compile (require 'cl)) |
| 35 | 35 | ||
| 36 | (declare-function orgtbl-to-tsv "ob-table" (table params)) | 36 | (declare-function orgtbl-to-tsv "org-table" (table params)) |
| 37 | (declare-function R "ext:essd-r" (&optional start-args)) | 37 | (declare-function R "ext:essd-r" (&optional start-args)) |
| 38 | (declare-function inferior-ess-send-input "ext:ess-inf" ()) | 38 | (declare-function inferior-ess-send-input "ext:ess-inf" ()) |
| 39 | 39 | ||