diff options
| author | Dan Nicolaescu | 2007-11-30 08:12:58 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-11-30 08:12:58 +0000 |
| commit | f29263b302d33bf90d5b07d3d6defa36788c6783 (patch) | |
| tree | 71df1ebdc1eb253dd1a69f5dca4c61d7321de9f5 /lisp/textmodes | |
| parent | 361763416f77cabb5787982f31b502ddba0bef72 (diff) | |
| download | emacs-f29263b302d33bf90d5b07d3d6defa36788c6783.tar.gz emacs-f29263b302d33bf90d5b07d3d6defa36788c6783.zip | |
* erc.el (open-ssl-stream, open-tls-stream, erc-network-name):
Declare as functions.
* textmodes/reftex-index.el (texmathp):
* textmodes/reftex-auc.el (TeX-argument-insert)
(TeX-argument-prompt, multi-prompt, LaTeX-add-index-entries)
(LaTeX-add-labels, LaTeX-bibitem-list, LaTeX-index-entry-list)
(LaTeX-label-list):
* nxml/rng-maint.el (rng-clear-cached-state, rng-clear-overlays)
(rng-clear-conditional-region, rng-do-some-validation): Declare as
functions.
(rng-error-count, rng-validate-up-to-date-end): Pacify byte compiler.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/reftex-auc.el | 12 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-index.el | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/lisp/textmodes/reftex-auc.el b/lisp/textmodes/reftex-auc.el index e49c408b6e5..e7d292f48bb 100644 --- a/lisp/textmodes/reftex-auc.el +++ b/lisp/textmodes/reftex-auc.el | |||
| @@ -33,6 +33,18 @@ | |||
| 33 | (require 'reftex) | 33 | (require 'reftex) |
| 34 | ;;; | 34 | ;;; |
| 35 | 35 | ||
| 36 | (declare-function TeX-argument-insert "ext:tex" (name optional &optional prefix)) | ||
| 37 | (declare-function TeX-argument-prompt "ext:tex" (optional prompt default &optional complete)) | ||
| 38 | (declare-function multi-prompt "ext:multi-prompt" | ||
| 39 | (separator | ||
| 40 | unique prompt table | ||
| 41 | &optional mp-predicate require-match initial history)) | ||
| 42 | (declare-function LaTeX-add-index-entries "ext:tex" (&rest entries) t) | ||
| 43 | (declare-function LaTeX-add-labels "ext:tex" (&rest entries) t) | ||
| 44 | (declare-function LaTeX-bibitem-list "ext:tex" () t) | ||
| 45 | (declare-function LaTeX-index-entry-list "ext:tex" () t) | ||
| 46 | (declare-function LaTeX-label-list "ext:tex" () t) | ||
| 47 | |||
| 36 | (defun reftex-plug-flag (which) | 48 | (defun reftex-plug-flag (which) |
| 37 | ;; Tell if a certain flag is set in reftex-plug-into-AUCTeX | 49 | ;; Tell if a certain flag is set in reftex-plug-into-AUCTeX |
| 38 | (or (eq t reftex-plug-into-AUCTeX) | 50 | (or (eq t reftex-plug-into-AUCTeX) |
diff --git a/lisp/textmodes/reftex-index.el b/lisp/textmodes/reftex-index.el index f430e9bd01a..73bcf6d6a74 100644 --- a/lisp/textmodes/reftex-index.el +++ b/lisp/textmodes/reftex-index.el | |||
| @@ -39,6 +39,9 @@ | |||
| 39 | (defvar transient-mark-mode) | 39 | (defvar transient-mark-mode) |
| 40 | (defvar TeX-master) | 40 | (defvar TeX-master) |
| 41 | ;; END remove for XEmacs release | 41 | ;; END remove for XEmacs release |
| 42 | |||
| 43 | (declare-function texmathp "ext:texmathp" ()) | ||
| 44 | |||
| 42 | (defun reftex-index-selection-or-word (&optional arg phrase) | 45 | (defun reftex-index-selection-or-word (&optional arg phrase) |
| 43 | "Put selection or the word near point into the default index macro. | 46 | "Put selection or the word near point into the default index macro. |
| 44 | This uses the information in `reftex-index-default-macro' to make an index | 47 | This uses the information in `reftex-index-default-macro' to make an index |