changeset 31453:dccc52324b0b stable

__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".
author Arun Giridhar <arungiridhar@gmail.com>
date Wed, 16 Nov 2022 10:04:08 -0500
parents 0b03473d754f
children 380b51580588 386f2f8a54f0
files scripts/help/__unimplemented__.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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"));