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/erc | |
| 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/erc')
| -rw-r--r-- | lisp/erc/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/erc/erc.el | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index cefc668fafe..61757622454 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-11-30 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * erc.el (open-ssl-stream, open-tls-stream, erc-network-name): | ||
| 4 | Declare as functions. | ||
| 5 | |||
| 1 | 2007-11-29 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change) | 6 | 2007-11-29 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change) |
| 2 | 7 | ||
| 3 | * erc-backend.el, erc.el: | 8 | * erc-backend.el, erc.el: |
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index ac9c3f6df9b..c6e5ea99c83 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el | |||
| @@ -2165,6 +2165,8 @@ Arguments are the same as for `erc'." | |||
| 2165 | 2165 | ||
| 2166 | (defalias 'erc-select-ssl 'erc-ssl) | 2166 | (defalias 'erc-select-ssl 'erc-ssl) |
| 2167 | 2167 | ||
| 2168 | (declare-function open-ssl-stream "ext:ssl" (name buffer host service)) | ||
| 2169 | |||
| 2168 | (defun erc-open-ssl-stream (name buffer host port) | 2170 | (defun erc-open-ssl-stream (name buffer host port) |
| 2169 | "Open an SSL stream to an IRC server. | 2171 | "Open an SSL stream to an IRC server. |
| 2170 | The process will be given the name NAME, its target buffer will be | 2172 | The process will be given the name NAME, its target buffer will be |
| @@ -2189,6 +2191,8 @@ Arguments are the same as for `erc'." | |||
| 2189 | (let ((erc-server-connect-function 'erc-open-tls-stream)) | 2191 | (let ((erc-server-connect-function 'erc-open-tls-stream)) |
| 2190 | (apply 'erc r))) | 2192 | (apply 'erc r))) |
| 2191 | 2193 | ||
| 2194 | (declare-function open-tls-stream "tls" (name buffer host port)) | ||
| 2195 | |||
| 2192 | (defun erc-open-tls-stream (name buffer host port) | 2196 | (defun erc-open-tls-stream (name buffer host port) |
| 2193 | "Open an TLS stream to an IRC server. | 2197 | "Open an TLS stream to an IRC server. |
| 2194 | The process will be given the name NAME, its target buffer will be | 2198 | The process will be given the name NAME, its target buffer will be |
| @@ -2225,6 +2229,8 @@ but you won't see it. | |||
| 2225 | WARNING: Do not set this variable directly! Instead, use the | 2229 | WARNING: Do not set this variable directly! Instead, use the |
| 2226 | function `erc-toggle-debug-irc-protocol' to toggle its value.") | 2230 | function `erc-toggle-debug-irc-protocol' to toggle its value.") |
| 2227 | 2231 | ||
| 2232 | (declare-function erc-network-name "erc-networks" ()) | ||
| 2233 | |||
| 2228 | (defun erc-log-irc-protocol (string &optional outbound) | 2234 | (defun erc-log-irc-protocol (string &optional outbound) |
| 2229 | "Append STRING to the buffer *erc-protocol*. | 2235 | "Append STRING to the buffer *erc-protocol*. |
| 2230 | 2236 | ||