]> git.eshelyaron.com Git - emacs.git/commitdiff
Make two perl-mode aliases obsolete
authorStefan Kangas <stefan@marxist.se>
Fri, 5 Aug 2022 10:23:00 +0000 (12:23 +0200)
committerStefan Kangas <stefan@marxist.se>
Fri, 5 Aug 2022 10:23:00 +0000 (12:23 +0200)
* lisp/progmodes/perl-mode.el (indent-perl-exp)
(mark-perl-function): Make obsolete.

lisp/progmodes/perl-mode.el

index 92b47ce88f63422933dc0f98454df59bbf7c4e9e..70cb46056836505a6241314a8743c42209dd11e1 100644 (file)
@@ -1120,7 +1120,6 @@ Returns (parse-state) if line starts inside a string."
         (t (forward-char -1) (forward-comment (- (point))) t)))))
 \f
 ;; note: this may be slower than the c-mode version, but I can understand it.
-(defalias 'indent-perl-exp 'perl-indent-exp)
 (defun perl-indent-exp ()
   "Indent each line of the Perl grouping following point."
   (interactive)
@@ -1220,7 +1219,6 @@ With argument, repeat that many times; negative args move backward."
              (goto-char (point-min)))))
       (setq arg (1+ arg)))))
 
-(defalias 'mark-perl-function 'perl-mark-function)
 (defun perl-mark-function ()
   "Put mark at end of Perl function, point at beginning."
   (interactive)
@@ -1230,6 +1228,9 @@ With argument, repeat that many times; negative args move backward."
   (perl-beginning-of-function)
   (backward-paragraph))
 
+(define-obsolete-function-alias 'indent-perl-exp #'perl-indent-exp "29.1")
+(define-obsolete-function-alias 'mark-perl-function #'perl-mark-function "29.1")
+
 (provide 'perl-mode)
 
 ;;; perl-mode.el ends here