summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--lisp/acdw-erc.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/acdw-erc.el b/lisp/acdw-erc.el index 09fa335..39af8ea 100644 --- a/lisp/acdw-erc.el +++ b/lisp/acdw-erc.el
@@ -35,8 +35,8 @@
35(defun erc/update-header-line-show-disconnected () 35(defun erc/update-header-line-show-disconnected ()
36 "Use a different face in the header-line when disconnected." 36 "Use a different face in the header-line when disconnected."
37 (erc-with-server-buffer 37 (erc-with-server-buffer
38 (cond ((erc-server-process-alive) 'erc-header-line) 38 (cond ((erc-server-process-alive) 'erc-header-line)
39 (t 'erc/header-line-disconnected)))) 39 (t 'erc/header-line-disconnected))))
40 40
41 41
42;;; Convenience functions 42;;; Convenience functions
@@ -116,6 +116,8 @@ If USE-TLS is non-nil, use TLS."
116 :group 'erc 116 :group 'erc
117 :type 'integer) 117 :type 'integer)
118 118
119(defalias 'erc-propertize 'propertize) ; I guess...taken out in 28 ?
120
119(defun erc-format-truncate-@nick (&optional user channel-data) 121(defun erc-format-truncate-@nick (&optional user channel-data)
120 "Format the nickname of USER as in `erc-format-@nick', with truncation. 122 "Format the nickname of USER as in `erc-format-@nick', with truncation.
121Truncation is customized using the `erc-nick-truncate' variable. 123Truncation is customized using the `erc-nick-truncate' variable.