File fix_line_continuations.patch of Package octave-forge-msh
From dda19a2f5b2db0b078ba7ce9f45a4c2ee2d81978 Mon Sep 17 00:00:00 2001 From: AvinoamK <a.kalma@gmail.com> Date: Wed, 2 Apr 2025 19:59:33 +0300 Subject: [PATCH] Update msh2m_structured_mesh.m: Fix obsolete continuation line markers Fix Octave bug #51970 https://savannah.gnu.org/bugs/?51970 --- inst/msh2m_structured_mesh.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inst/msh2m_structured_mesh.m b/inst/msh2m_structured_mesh.m index 679d9fb..f122934 100644 --- a/inst/msh2m_structured_mesh.m +++ b/inst/msh2m_structured_mesh.m @@ -229,9 +229,9 @@ %!test %! x = y = linspace(0,1,3); %! msh = msh2m_structured_mesh(x,y,1,[1:4]); -%! p = [0.00000 0.00000 0.00000 0.50000 0.50000 0.50000 \ +%! p = [0.00000 0.00000 0.00000 0.50000 0.50000 0.50000 ... %! 1.00000 1.00000 1.00000 -%! 0.00000 0.50000 1.00000 0.00000 0.50000 1.00000 \ +%! 0.00000 0.50000 1.00000 0.00000 0.50000 1.00000 ... %! 0.00000 0.50000 1.00000]; %! assert(msh.p,p) %! e = [1 4 7 8 3 6 1 2 @@ -246,4 +246,4 @@ %! 4 5 7 8 5 6 8 9 %! 5 6 8 9 2 3 5 6 %! 1 1 1 1 1 1 1 1]; -%! assert(msh.t,t) \ No newline at end of file +%! assert(msh.t,t)