summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2021-07-31 20:18:21 -0500
committerCase Duckworth2021-07-31 20:18:21 -0500
commit6cb7314448544ecb7ec1726203961bc15a8b7f69 (patch)
treec6ba625b0a6dd17ac59ef7c81b2087a41237ac62
parentRewrite kill-ring-save-unfilled (diff)
downloademacs-6cb7314448544ecb7ec1726203961bc15a8b7f69.tar.gz
emacs-6cb7314448544ecb7ec1726203961bc15a8b7f69.zip
Add alias for erc-propertize -> propertize
-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.