diff options
author | William Carroll <wpcarro@gmail.com> | 2022-07-30T04·12-0700 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-07-30T04·26+0000 |
commit | d1ab0c7cbcda92114cce4d51b36aac5f07d26e4d (patch) | |
tree | 631c5ca2a5268394ecedada1db24a7937a7a341b /users/wpcarro/emacs/.emacs.d/wpc/irc.el | |
parent | 65fb82097bc35a8b06da6b8a1c4b36c0c459932d (diff) |
feat(wpcarro/emacs): Package cycle.el r/4349
This will likely break a few things since I've changed the names of a few functions to reflect their mutative APIs. Change-Id: If6279999fba50813b68e66d7713c12afd209eb90 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6004 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/emacs/.emacs.d/wpc/irc.el')
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/wpc/irc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/irc.el b/users/wpcarro/emacs/.emacs.d/wpc/irc.el index 9103bd38fe1a..70d26f7f08c2 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/irc.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/irc.el @@ -135,7 +135,7 @@ (with-current-buffer (current-buffer) (let ((cycle (irc-channel->cycle irc-server->channels (buffer-name)))) (erc-join-channel - (cycle-next cycle)) + (cycle-next! cycle)) (irc-message (string-format "Current IRC channel: %s" (cycle-current cycle)))))) @@ -145,7 +145,7 @@ (with-current-buffer (current-buffer) (let ((cycle (irc-channel->cycle irc-server->channels (buffer-name)))) (erc-join-channel - (cycle-prev cycle)) + (cycle-prev! cycle)) (irc-message (string-format "Current IRC channel: %s" (cycle-current cycle)))))) |