branch: externals/el-job
commit e061f4ef49ef463fd052d3230608d80f61461769
Author: Martin Edström <meedstro...@gmail.com>
Commit: Martin Edström <meedstro...@gmail.com>

    Clearer info
---
 el-job.el | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/el-job.el b/el-job.el
index 7423b0b3e3..54b3db8693 100644
--- a/el-job.el
+++ b/el-job.el
@@ -697,14 +697,16 @@ same ID still has the benchmarks table and possibly 
queued input."
 
 (defun el-job-show-info ()
   "Prompt for a job and show its data in a new buffer.
-Tip: alternatively, you can preserve the process buffers for inspection.
-Use \\[el-job-cycle-debug-level] and they are not killed from then on."
+
+Tip: you can also inspect the contents of the process buffers.
+Use \\[el-job-cycle-debug-level] so the debug level is 1+, then look
+for buffer names starting with \" *el-job\" - note leading space."
   (interactive)
   (let* ((id (intern (completing-read "Get info on job: " el-job--all-jobs)))
          (job (gethash id el-job--all-jobs))
          (print-function
-          (if (y-or-n-p "Print with `cl-prin1' (pretty but may be slow)?")
-              (if (y-or-n-p "Print with `pp' (even prettier)?")
+          (if (y-or-n-p "Pretty-print with `cl-prin1' (choose no if slow)? ")
+              (if (y-or-n-p "Print with `pp' (even prettier)? ")
                   'pp
                 'cl-prin1)
             'prin1)))

Reply via email to