]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/htmlfontify.el (hfy-text-p): Fix whitespace.
authorEli Zaretskii <eliz@gnu.org>
Tue, 27 Dec 2022 14:10:42 +0000 (16:10 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 27 Dec 2022 14:10:42 +0000 (16:10 +0200)
lisp/htmlfontify.el

index 389b92939cc89c7dd6f6533222877b6747c07956..32bf0bf4d44c749469801635ece7bc6e466c49de 100644 (file)
@@ -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