From abd5b75449dfe4c5f20e6c3c937b8251f290169f Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Tue, 17 Sep 2024 02:11:52 +0300 Subject: [PATCH] Rename project-{find-file-in-root,root-find-file} * lisp/progmodes/project.el (project-root-find-file): Rename from 'project-find-file-in-root' (bug#73044). (cherry picked from commit 8eb66cca78dca27d58a8881b587b3340043a74f7) --- etc/NEWS | 2 +- lisp/progmodes/project.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/NEWS b/etc/NEWS index 7284ad5335c..875a614915d 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -84,7 +84,7 @@ This hook allows you to control which tab-bar tabs are auto-resized. ** Project --- -*** New command 'project-find-file-in-root'. +*** New command 'project-root-find-file'. It is equivalent to running ‘project-any-command’ with ‘find-file’. diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index 83cd3f4f7cb..714acc5faca 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -1076,7 +1076,7 @@ using a command like `project-find-file'." filename)) ;;;###autoload -(defun project-find-file-in-root (filename) +(defun project-root-find-file (filename) "Edit file FILENAME. Interactively, prompt for FILENAME, defaulting to the root directory of -- 2.39.5