diff options
| author | Dmitry Gutov | 2024-10-23 22:43:18 +0300 |
|---|---|---|
| committer | Dmitry Gutov | 2024-10-23 22:43:18 +0300 |
| commit | efaec5f61df967e2a4b85c5607f559f92f220ca9 (patch) | |
| tree | dca557e1ef9ca90ba8c4a2042032f3c4584574ba | |
| parent | 5e5689a2a40cd16d7593a0c7ddea5511adc3bf22 (diff) | |
| download | emacs-efaec5f61df967e2a4b85c5607f559f92f220ca9.tar.gz emacs-efaec5f61df967e2a4b85c5607f559f92f220ca9.zip | |
project-prompter: Update the docstring for the recent change
* lisp/progmodes/project.el (project-prompter):
Update the docstring too (bug#70833).
| -rw-r--r-- | lisp/progmodes/project.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index 3cdaa7c2a76..5062021f8a6 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el | |||
| @@ -199,7 +199,9 @@ When it is non-nil, `project-current' will always skip prompting too.") | |||
| 199 | 199 | ||
| 200 | (defcustom project-prompter #'project-prompt-project-dir | 200 | (defcustom project-prompter #'project-prompt-project-dir |
| 201 | "Function to call to prompt for a project. | 201 | "Function to call to prompt for a project. |
| 202 | Called with no arguments and should return a project root dir." | 202 | The function is either called with no arguments or with one argument, |
| 203 | which is the prompt string to use. It should return a project root | ||
| 204 | directory." | ||
| 203 | :type '(choice (const :tag "Prompt for a project directory" | 205 | :type '(choice (const :tag "Prompt for a project directory" |
| 204 | project-prompt-project-dir) | 206 | project-prompt-project-dir) |
| 205 | (const :tag "Prompt for a project name" | 207 | (const :tag "Prompt for a project name" |