aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2022-11-04 15:56:30 +0200
committerEli Zaretskii2022-11-04 15:56:30 +0200
commitdcb11202acdecfd3ce504cc8faaf1ba103bbfb45 (patch)
tree66a1d7234ad707475cd8b25612690501ab2e8f0e
parentfd3f51b7c3a6649ee3db12d33b056b1afdbfa7e9 (diff)
downloademacs-dcb11202acdecfd3ce504cc8faaf1ba103bbfb45.tar.gz
emacs-dcb11202acdecfd3ce504cc8faaf1ba103bbfb45.zip
; * lisp/progmodes/project.el (project-buffers): Doc fix.
-rw-r--r--lisp/progmodes/project.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index 0fe0a945ec2..fc916739d01 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -355,8 +355,8 @@ Also quote LOCAL-FILES if `default-directory' is quoted."
355(cl-defgeneric project-buffers (project) 355(cl-defgeneric project-buffers (project)
356 "Return the list of all live buffers that belong to PROJECT. 356 "Return the list of all live buffers that belong to PROJECT.
357 357
358The default implementation matches the existing buffers to 358The default implementation matches each buffer to PROJECT root using
359PROJECT root using the value of `default-directory' in each one." 359the buffer's value of `default-directory'."
360 (let ((root (expand-file-name (file-name-as-directory (project-root project)))) 360 (let ((root (expand-file-name (file-name-as-directory (project-root project))))
361 bufs) 361 bufs)
362 (dolist (buf (buffer-list)) 362 (dolist (buf (buffer-list))