diff options
| author | Glenn Morris | 2009-09-30 02:33:07 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-09-30 02:33:07 +0000 |
| commit | 9d459fc520a79e37eef09031dacbb6b071b67af6 (patch) | |
| tree | bad3b547169fae062d0648e3db7fc83a4cac814e | |
| parent | 1a5ee3eed4e77d07909c9ad797b036b6c07d9596 (diff) | |
| download | emacs-9d459fc520a79e37eef09031dacbb6b071b67af6.tar.gz emacs-9d459fc520a79e37eef09031dacbb6b071b67af6.zip | |
Fix declarations.
| -rw-r--r-- | lisp/org/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/org/org-compat.el | 4 | ||||
| -rw-r--r-- | lisp/org/org-exp-blocks.el | 2 | ||||
| -rw-r--r-- | lisp/org/org-exp.el | 2 | ||||
| -rw-r--r-- | lisp/org/org-protocol.el | 2 | ||||
| -rw-r--r-- | lisp/org/org-table.el | 2 | ||||
| -rw-r--r-- | lisp/org/org.el | 2 |
7 files changed, 19 insertions, 7 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 8e0decf5347..8685c02b7a8 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2009-09-30 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * org-compat.el (w32-focus-frame): | ||
| 4 | * org-exp-blocks.el (R): | ||
| 5 | * org-exp.el (htmlize-buffer): | ||
| 6 | * org-protocol.el (server-edit): | ||
| 7 | * org-table.el (org-format-org-table-html): | ||
| 8 | * org.el (org-indent-mode): Fix declarations. | ||
| 9 | |||
| 10 | * org-colview.el (org-columns-uncompile-format): Avoid assignment to | ||
| 11 | free variable `fun'. | ||
| 12 | |||
| 1 | 2009-09-29 Juanma Barranquero <lekktu@gmail.com> | 13 | 2009-09-29 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 14 | ||
| 3 | * org-agenda.el (org-agenda-restore-windows-after-quit): | 15 | * org-agenda.el (org-agenda-restore-windows-after-quit): |
diff --git a/lisp/org/org-compat.el b/lisp/org/org-compat.el index 2f4112ce354..876844ee7bc 100644 --- a/lisp/org/org-compat.el +++ b/lisp/org/org-compat.el | |||
| @@ -36,8 +36,8 @@ | |||
| 36 | 36 | ||
| 37 | (require 'org-macs) | 37 | (require 'org-macs) |
| 38 | 38 | ||
| 39 | (declare-function find-library-name "find-func" (library)) | 39 | (declare-function find-library-name "find-func" (library)) |
| 40 | (declare-function w32-focus-frame "w32-win" (frame)) | 40 | (declare-function w32-focus-frame "term/w32-win" (frame)) |
| 41 | 41 | ||
| 42 | (defconst org-xemacs-p (featurep 'xemacs)) ; not used by org.el itself | 42 | (defconst org-xemacs-p (featurep 'xemacs)) ; not used by org.el itself |
| 43 | (defconst org-format-transports-properties-p | 43 | (defconst org-format-transports-properties-p |
diff --git a/lisp/org/org-exp-blocks.el b/lisp/org/org-exp-blocks.el index 5a55b563790..4dac201a30d 100644 --- a/lisp/org/org-exp-blocks.el +++ b/lisp/org/org-exp-blocks.el | |||
| @@ -85,7 +85,7 @@ | |||
| 85 | (defvar asciip) | 85 | (defvar asciip) |
| 86 | 86 | ||
| 87 | (declare-function comint-send-input "comint" (&optional no-newline artificial)) | 87 | (declare-function comint-send-input "comint" (&optional no-newline artificial)) |
| 88 | (declare-function R "ess" nil) | 88 | (declare-function R "ext:ess" nil) |
| 89 | 89 | ||
| 90 | (defun org-export-blocks-set (var value) | 90 | (defun org-export-blocks-set (var value) |
| 91 | "Set the value of `org-export-blocks' and install fontification." | 91 | "Set the value of `org-export-blocks' and install fontification." |
diff --git a/lisp/org/org-exp.el b/lisp/org/org-exp.el index 3e12e6af10e..c03ff19dc20 100644 --- a/lisp/org/org-exp.el +++ b/lisp/org/org-exp.el | |||
| @@ -39,7 +39,7 @@ | |||
| 39 | (declare-function org-agenda-skip "org-agenda" ()) | 39 | (declare-function org-agenda-skip "org-agenda" ()) |
| 40 | (declare-function org-infojs-options-inbuffer-template "org-jsinfo" ()) | 40 | (declare-function org-infojs-options-inbuffer-template "org-jsinfo" ()) |
| 41 | (declare-function org-export-htmlize-region-for-paste "org-html" (beg end)) | 41 | (declare-function org-export-htmlize-region-for-paste "org-html" (beg end)) |
| 42 | (declare-function htmlize-buffer "htmlize" (&optional buffer)) | 42 | (declare-function htmlize-buffer "ext:htmlize" (&optional buffer)) |
| 43 | (autoload 'org-export-generic "org-export-generic" "Export using the generic exporter" t) | 43 | (autoload 'org-export-generic "org-export-generic" "Export using the generic exporter" t) |
| 44 | (defgroup org-export nil | 44 | (defgroup org-export nil |
| 45 | "Options for exporting org-listings." | 45 | "Options for exporting org-listings." |
diff --git a/lisp/org/org-protocol.el b/lisp/org/org-protocol.el index b32c1095743..2fa84041d39 100644 --- a/lisp/org/org-protocol.el +++ b/lisp/org/org-protocol.el | |||
| @@ -125,7 +125,7 @@ | |||
| 125 | (&optional refresh)) | 125 | (&optional refresh)) |
| 126 | (declare-function org-publish-get-project-from-filename "org-publish" | 126 | (declare-function org-publish-get-project-from-filename "org-publish" |
| 127 | (filename &optional up)) | 127 | (filename &optional up)) |
| 128 | (declare-function server-edit "server" ()) | 128 | (declare-function server-edit "server" (&optional arg)) |
| 129 | 129 | ||
| 130 | 130 | ||
| 131 | (defgroup org-protocol nil | 131 | (defgroup org-protocol nil |
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el index bf7d960a56a..30d662140d9 100644 --- a/lisp/org/org-table.el +++ b/lisp/org/org-table.el | |||
| @@ -42,7 +42,7 @@ | |||
| 42 | 42 | ||
| 43 | (declare-function org-table-clean-before-export "org-exp" | 43 | (declare-function org-table-clean-before-export "org-exp" |
| 44 | (lines &optional maybe-quoted)) | 44 | (lines &optional maybe-quoted)) |
| 45 | (declare-function org-format-org-table-html "org-exp" (lines &optional splice)) | 45 | (declare-function org-format-org-table-html "org-html" (lines &optional splice)) |
| 46 | (defvar orgtbl-mode) ; defined below | 46 | (defvar orgtbl-mode) ; defined below |
| 47 | (defvar orgtbl-mode-menu) ; defined when orgtbl mode get initialized | 47 | (defvar orgtbl-mode-menu) ; defined when orgtbl mode get initialized |
| 48 | (defvar org-export-html-table-tag) ; defined in org-exp.el | 48 | (defvar org-export-html-table-tag) ; defined in org-exp.el |
diff --git a/lisp/org/org.el b/lisp/org/org.el index 588faa21ac2..02edc04d191 100644 --- a/lisp/org/org.el +++ b/lisp/org/org.el | |||
| @@ -2935,7 +2935,7 @@ Normal means, no org-mode-specific context." | |||
| 2935 | (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item | 2935 | (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item |
| 2936 | "org-agenda" (&optional end)) | 2936 | "org-agenda" (&optional end)) |
| 2937 | (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ()) | 2937 | (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ()) |
| 2938 | (declare-function org-indent-mode "org-indent" (arg)) | 2938 | (declare-function org-indent-mode "org-indent" (&optional arg)) |
| 2939 | (declare-function parse-time-string "parse-time" (string)) | 2939 | (declare-function parse-time-string "parse-time" (string)) |
| 2940 | (declare-function remember "remember" (&optional initial)) | 2940 | (declare-function remember "remember" (&optional initial)) |
| 2941 | (declare-function remember-buffer-desc "remember" ()) | 2941 | (declare-function remember-buffer-desc "remember" ()) |