emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master ebcbd50: More docstring updates in project.el


From: Dmitry Gutov
Subject: master ebcbd50: More docstring updates in project.el
Date: Sat, 11 Jul 2020 20:39:41 -0400 (EDT)

branch: master
commit ebcbd50c5371dd41dd66eebe4ae525e8ce43df10
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: Dmitry Gutov <dgutov@yandex.ru>

    More docstring updates in project.el
    
    * lisp/progmodes/project.el (project-find-functions)
    (project-current, project-switch-to-buffer):
    More docstring updates.
---
 lisp/progmodes/project.el | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index af02af7..293ef0b 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -103,9 +103,10 @@
 Each functions on this hook is called in turn with one
 argument, the directory in which to look, and should return
 either nil to mean that it is not applicable, or a project instance.
-The exact form of the project instance depends on the respective
-function; for example, the default `project-try-vc' returns a
-cons cell of the form (vc . PROJECT-ROOT-DIRECTORY).")
+The exact form of the project instance is up to each respective
+function; the only practical limitation is to use values that
+`cl-defmethod' can dispatch on, like a cons cell, or a list, or a
+CL struct.")
 
 (defvar project-current-inhibit-prompt nil
   "Non-nil to skip prompting the user in `project-current'.")
@@ -113,9 +114,10 @@ cons cell of the form (vc . PROJECT-ROOT-DIRECTORY).")
 ;;;###autoload
 (defun project-current (&optional maybe-prompt directory)
   "Return the project instance in DIRECTORY, defaulting to `default-directory'.
-When no project is found in that directory, and MAYBE-PROMPT
-is non-nil, ask the user for a directory in which to look for the project.
-If no project is found, return nil.
+When no project is found in that directory, and MAYBE-PROMPT is
+non-nil, ask the user for a directory in which to look for the
+project; if no project is found there, return a \"transient\"
+instance.
 
 See the doc string of `project-find-functions' for the form of the
 project instance object."
@@ -813,9 +815,7 @@ Arguments the same as in `compile'."
 This function prompts for another buffer, offering as candidates
 buffers that belong to the same project as the current buffer.
 Two buffers belong to the same project if their project instances,
-as reported by `project-current' in each buffer, are identical.  See
-the doc string of `project-find-functions' for the forms a project
-instance object can take."
+as reported by `project-current' in each buffer, are identical."
   (interactive)
   (let* ((pr (project-current t))
          (current-buffer (current-buffer))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]