diff options
| author | Glenn Morris | 2007-12-01 03:44:37 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-12-01 03:44:37 +0000 |
| commit | c2fd78e06d28b479daf4df2a294f8bdec7d561d3 (patch) | |
| tree | 3bc2415506b52aaffbf9ba89269b22b24d074396 | |
| parent | e3abf9d998431a25b27c34e49fdeba3e1b3214bc (diff) | |
| download | emacs-c2fd78e06d28b479daf4df2a294f8bdec7d561d3.tar.gz emacs-c2fd78e06d28b479daf4df2a294f8bdec7d561d3.zip | |
(erc-controls-strip): Declare for compiler.
| -rw-r--r-- | lisp/erc/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/erc/erc.el | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index fae45a2baba..bd20dfbed45 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog | |||
| @@ -3,8 +3,8 @@ | |||
| 3 | * erc-backend.el (erc-server-send-ping): Move after definition of | 3 | * erc-backend.el (erc-server-send-ping): Move after definition of |
| 4 | erc-server-send. | 4 | erc-server-send. |
| 5 | 5 | ||
| 6 | * erc.el (iswitchb-temp-buflist, iswitchb-read-buffer): Declare | 6 | * erc.el (iswitchb-temp-buflist, iswitchb-read-buffer) |
| 7 | for compiler. | 7 | (erc-controls-strip): Declare for compiler. |
| 8 | (erc-iswitchb): Don't require iswitchb when compiling. Test | 8 | (erc-iswitchb): Don't require iswitchb when compiling. Test |
| 9 | iswitchb-mode is bound. | 9 | iswitchb-mode is bound. |
| 10 | 10 | ||
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index e52392d0337..e4e9268bfbe 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el | |||
| @@ -5964,6 +5964,9 @@ if `erc-away' is non-nil." | |||
| 5964 | (cond (lag (format "lag:%.0f" lag)) | 5964 | (cond (lag (format "lag:%.0f" lag)) |
| 5965 | (t "")))) | 5965 | (t "")))) |
| 5966 | 5966 | ||
| 5967 | ;; erc-goodies is required at end of this file. | ||
| 5968 | (declare-function erc-controls-strip "erc-goodies" (str)) | ||
| 5969 | |||
| 5967 | (defun erc-update-mode-line-buffer (buffer) | 5970 | (defun erc-update-mode-line-buffer (buffer) |
| 5968 | "Update the mode line in a single ERC buffer BUFFER." | 5971 | "Update the mode line in a single ERC buffer BUFFER." |
| 5969 | (with-current-buffer buffer | 5972 | (with-current-buffer buffer |