emacs-diffs
[Top][All Lists]
Advanced

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

emacs-29 e3b4cd0ac1 2/2: ; * lisp/htmlfontify.el (hfy-text-p): Fix white


From: Eli Zaretskii
Subject: emacs-29 e3b4cd0ac1 2/2: ; * lisp/htmlfontify.el (hfy-text-p): Fix whitespace.
Date: Tue, 27 Dec 2022 09:10:57 -0500 (EST)

branch: emacs-29
commit e3b4cd0ac1df326034492bcf64a25d95a1ca7e38
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; * lisp/htmlfontify.el (hfy-text-p): Fix whitespace.
---
 lisp/htmlfontify.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el
index 389b92939c..32bf0bf4d4 100644
--- a/lisp/htmlfontify.el
+++ b/lisp/htmlfontify.el
@@ -1850,8 +1850,9 @@ Hardly bombproof, but good enough in the context in which 
it is being used."
 
 (defun hfy-text-p (srcdir file)
   "Is SRCDIR/FILE text?  Use `hfy-istext-command' to determine this."
-  (let* ((cmd (format hfy-istext-command (shell-quote-argument 
(expand-file-name file srcdir))))
-         (rsp (shell-command-to-string    cmd)))
+  (let* ((cmd (format hfy-istext-command
+                      (shell-quote-argument (expand-file-name file srcdir))))
+         (rsp (shell-command-to-string cmd)))
     (string-match "text" rsp)))
 
 ;; open a file, check fontification, if fontified, write a fontified copy



reply via email to

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