]> git.eshelyaron.com Git - emacs.git/commitdiff
Replace cl-c[ad]+r with regular c[ad]+r
authorPhilip Kaludercic <philipk@posteo.net>
Wed, 28 Jul 2021 08:31:57 +0000 (10:31 +0200)
committerPhilip Kaludercic <philipk@posteo.net>
Wed, 28 Jul 2021 08:31:57 +0000 (10:31 +0200)
* rcirc.el (rcirc-make-trees): Replace cl-cdadr with cdadr
(rcirc-handler-333): Replace cl-cadddr with cadddr
(rcirc-authenticate): Replace cl-cdddr with cdddr

lisp/net/rcirc.el

index b850ac00648b6d473134b1dc15e2022aff8c86d8..629b51d7c355dd7d82aa95204f5f6eb774fd28fd 100644 (file)
@@ -2405,7 +2405,7 @@ prefix with another element in PAIRS."
            (when (and (listp x) (listp (cadr x)))
              (setcdr x (if (> (length (cdr x)) 1)
                            (rcirc-make-trees (cdr x))
-                         (setcdr x (list (cl-cdadr x)))))))
+                         (setcdr x (list (cdadr x)))))))
          alist)))
 \f
 ;;; /commands these are called with 3 args: PROCESS, TARGET, which is
@@ -3234,7 +3234,7 @@ RFC1459."
     (with-current-buffer buffer
       (let ((setter (nth 2 args))
            (time (current-time-string
-                  (string-to-number (cl-cadddr args)))))
+                  (string-to-number (cadddr args)))))
        (rcirc-print process sender "TOPIC" (cadr args)
                     (format "%s (%s on %s)" rcirc-topic setter time))))))
 
@@ -3344,7 +3344,7 @@ Passwords are stored in `rcirc-authinfo' (which see)."
            (server (car i))
            (nick (nth 2 i))
            (method (cadr i))
-           (args (cl-cdddr i)))
+           (args (cdddr i)))
        (when (and (string-match server rcirc-server))
           (if (and (memq method '(nickserv chanserv bitlbee))
                    (string-match nick rcirc-nick))