diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-11-29 14:16:02 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-11-29 14:16:02 -0500 |
commit | 1ccaaaa3ca97b53573f78b3afe80987cd61b5dff (patch) | |
tree | de77bc5682132174db556c8e687aa87f9616f597 | |
parent | 808c2d605dc93f94bd79941e2fd530035a690abb (diff) | |
download | emacsconf-el-1ccaaaa3ca97b53573f78b3afe80987cd61b5dff.tar.xz emacsconf-el-1ccaaaa3ca97b53573f78b3afe80987cd61b5dff.zip |
remove message
-rw-r--r-- | emacsconf-erc.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/emacsconf-erc.el b/emacsconf-erc.el index cdc8b9b..8f47d36 100644 --- a/emacsconf-erc.el +++ b/emacsconf-erc.el @@ -491,7 +491,6 @@ Usage: /conflog keyword notes go here" (defun emacsconf-erc-notice-announcements (string) "Try to avoid spamming the announcement channels." (when (string-match (concat "\\`<@?" (regexp-opt emacsconf-erc-announcement-nicks) "> \\(--.*\\)") string) - (message "%s" (substring-no-properties string)) (setq emacsconf-erc-recent-announcements (cons (cons (match-string-no-properties 1 string) (current-time)) (seq-take emacsconf-erc-recent-announcements (1- emacsconf-erc-recent-announcements-length)))))) |