]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename set-rcirc-{encode,decode}-coding-system
authorPhilip Kaludercic <philipk@posteo.net>
Mon, 14 Jun 2021 11:25:57 +0000 (13:25 +0200)
committerPhilip Kaludercic <philipk@posteo.net>
Mon, 14 Jun 2021 11:25:57 +0000 (13:25 +0200)
* rcirc.el (set-rcirc-decode-coding-system): Deprecate command
(rcirc-set-decode-coding-system): New command
(set-rcirc-encode-coding-system): Deprecate command
(rcirc-set-encode-coding-system): New command

lisp/net/rcirc.el

index de42220f96f071711d6059d2d11b52e1cdfde129..86f9ff048db82885655bdc2cb101be1a61bfa656 100644 (file)
@@ -1157,16 +1157,26 @@ The list is updated automatically by `defun-rcirc-command'.")
                      '(metadata (cycle-sort-function . identity))
                    (complete-with-action action table str pred)))))))
 
-(defun set-rcirc-decode-coding-system (coding-system)
+(defun rcirc-set-decode-coding-system (coding-system)
   "Set the decode CODING-SYSTEM used in this channel."
   (interactive "zCoding system for incoming messages: ")
   (setq-local rcirc-decode-coding-system coding-system))
 
-(defun set-rcirc-encode-coding-system (coding-system)
+(define-obsolete-function-alias
+  'rcirc-set-decode-coding-system
+  'set-rcirc-decode-coding-system
+  "28.1")
+
+(defun rcirc-set-encode-coding-system (coding-system)
   "Set the encode CODING-SYSTEM used in this channel."
   (interactive "zCoding system for outgoing messages: ")
   (setq-local rcirc-encode-coding-system coding-system))
 
+(define-obsolete-function-alias
+  'rcirc-set-encode-coding-system
+  'set-rcirc-encode-coding-system
+  "28.1")
+
 (defvar rcirc-mode-map
   (let ((map (make-sparse-keymap)))
     (define-key map (kbd "RET") 'rcirc-send-input)