diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-11-30 08:12:58 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-11-30 08:12:58 +0000 |
commit | f29263b302d33bf90d5b07d3d6defa36788c6783 (patch) | |
tree | 71df1ebdc1eb253dd1a69f5dca4c61d7321de9f5 /lisp/textmodes/reftex-auc.el | |
parent | 361763416f77cabb5787982f31b502ddba0bef72 (diff) | |
download | emacs-f29263b302d33bf90d5b07d3d6defa36788c6783.tar.gz emacs-f29263b302d33bf90d5b07d3d6defa36788c6783.tar.bz2 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/reftex-auc.el')
-rw-r--r-- | lisp/textmodes/reftex-auc.el | 12 |
1 files changed, 12 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 @@ (require 'reftex) ;;; +(declare-function TeX-argument-insert "ext:tex" (name optional &optional prefix)) +(declare-function TeX-argument-prompt "ext:tex" (optional prompt default &optional complete)) +(declare-function multi-prompt "ext:multi-prompt" + (separator + unique prompt table + &optional mp-predicate require-match initial history)) +(declare-function LaTeX-add-index-entries "ext:tex" (&rest entries) t) +(declare-function LaTeX-add-labels "ext:tex" (&rest entries) t) +(declare-function LaTeX-bibitem-list "ext:tex" () t) +(declare-function LaTeX-index-entry-list "ext:tex" () t) +(declare-function LaTeX-label-list "ext:tex" () t) + (defun reftex-plug-flag (which) ;; Tell if a certain flag is set in reftex-plug-into-AUCTeX (or (eq t reftex-plug-into-AUCTeX) |