From 2dba9c85b5dc0ad9019458c0e2e75f62404697bf Mon Sep 17 00:00:00 2001 From: John Kitchin Date: Sat, 22 Jun 2024 20:27:33 -0400 Subject: [PATCH] change from -c to quiet --- org-db-images.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-db-images.el b/org-db-images.el index 2b6403ca..20ae55e2 100644 --- a/org-db-images.el +++ b/org-db-images.el @@ -44,7 +44,7 @@ PARSE-TREE is from `org-element-parse-buffer'." ;; Add new entries (cl-loop for (img-file . begin) in img-data do (setq text (shell-command-to-string - (format "tesseract -c debug_file=/dev/null %s -" img-file))) + (format "tesseract %s - quiet" img-file))) (sqlite-execute org-db "insert into images values (?, ?, ?, ?, ?)" (list nil filename-id (expand-file-name img-file)