# HG changeset patch # User Arun Giridhar # Date 1668611048 18000 # Node ID dccc52324b0bb8dbf1dc30251a0ed8872c1065f0 # Parent 0b03473d754fcf4f2af58078810d0f516742fe58 __unimplemented__.m: Fix apostrophe errors with Texinfo 7 (bug #62648) __unimplemented__.m: Fix BISTs that were failing with mismatches between "straight quotes" and "curly quotes". diff -r 0b03473d754f -r dccc52324b0b scripts/help/__unimplemented__.m --- a/scripts/help/__unimplemented__.m Wed Nov 16 23:43:53 2022 +0900 +++ b/scripts/help/__unimplemented__.m Wed Nov 16 10:04:08 2022 -0500 @@ -1340,8 +1340,8 @@ %!test %! str = __unimplemented__ ("matlabrc"); -%! assert (str(1:71), "matlabrc is not implemented. Octave uses the file '.octaverc' instead."); +%! assert (regexp (str, "matlabrc is not implemented\. Octave uses the file .\.octaverc. instead\.")); %!test %! str = __unimplemented__ ("MException"); -%! assert (str(1:58), "The 'MException' function is not yet implemented in Octave"); +%! assert (regexp (str, "The .MException. function is not yet implemented in Octave"));