changeset 30780:1fcb3359f6a4

maint: Use Octave convention for leading comment character. * configure_make.m: Use "##" to begin single-line comment.
author Rik <rik@octave.org>
date Fri, 25 Feb 2022 16:22:32 -0800
parents 73404743f3de
children 230c1c39744b
files scripts/pkg/private/configure_make.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/pkg/private/configure_make.m	Fri Feb 25 15:42:43 2022 +0100
+++ b/scripts/pkg/private/configure_make.m	Fri Feb 25 16:22:32 2022 -0800
@@ -53,13 +53,13 @@
     endif
 
     if (ispc () && ! isunix ())
-      # replace all backslashes with forward slashes
+      ## Replace all backslashes with forward slashes
       mkoctfile_program = strrep (mkoctfile_program, '\', '/');
       octave_config_program = strrep (octave_config_program, '\', '/');
       octave_binary = strrep (octave_binary, '\', '/');
     endif
 
-    # escape spaces in file paths unless they are already escaped
+    ## Escape spaces in file paths unless they are already escaped
     mkoctfile_program = regexprep (mkoctfile_program, '([^\\]) ', '$1\\ ');
     octave_config_program = regexprep (octave_config_program, ...
                                        '([^\\]) ', '$1\\ ');