texinfo-commits
[Top][All Lists]
Advanced

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

[no subject]


From: Gavin D. Smith
Date: Sun, 2 May 2021 08:37:46 -0400 (EDT)

branch: master
commit 55081fa30bcbe68cf3267d739ad7c3d2b1247f29
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Sun May 2 13:35:51 2021 +0100

    * util/texi2dvi (input_file_name_decode):
    Fix ShellCheck SC1083 warning
    https://github.com/koalaman/shellcheck/wiki/SC1083
    This is only for suppresing the warning, both '{' and '}'
    are supposed to be literals.
---
 ChangeLog     | 8 ++++++++
 util/texi2dvi | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index c633d81..52d66a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2021-05-02  Vitezslav Crhonek <vcrhonek@redhat.com>
+
+       * util/texi2dvi (input_file_name_decode):
+       Fix ShellCheck SC1083 warning
+       https://github.com/koalaman/shellcheck/wiki/SC1083
+       This is only for suppresing the warning, both '{' and '}'
+       are supposed to be literals.
+
 2021-05-02  Gavin Smith  <gavinsmith0123@gmail.com>
 
        Avoid extra newline after @titlefont
diff --git a/util/texi2dvi b/util/texi2dvi
index ededbc3..f1cbaef 100755
--- a/util/texi2dvi
+++ b/util/texi2dvi
@@ -1695,7 +1695,7 @@ cleanup ()
 input_file_name_decode ()
 {
   case $command_line_filename in
-    *\\input{*}*)
+    *\\input\{*\}*)
       # Let AUC-TeX error parser deal with line numbers.
       line_error=false
       command_line_filename=`\



reply via email to

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