# HG changeset patch # User John W. Eaton # Date 1629118589 14400 # Node ID febddcd0f227450de3d2e1f654e142daecaf3cf5 # Parent 2af7339fa6d156e5177120526c9b8b25dc7caf05 fix macro name in generated builtin-defun-decls.h file * mk-builtins.pl: Emit OCTAVE_PROVIDE_DEPRECATED_SYMBOLS, not OCTAVE_DECLARE_DEPRECATED_SYMBOLS. diff -r 2af7339fa6d1 -r febddcd0f227 libinterp/mk-builtins.pl --- a/libinterp/mk-builtins.pl Mon Aug 16 14:58:26 2021 +0200 +++ b/libinterp/mk-builtins.pl Mon Aug 16 08:56:29 2021 -0400 @@ -150,7 +150,7 @@ print "\nOCTAVE_NAMESPACE_END\n"; - print "\n#if defined (OCTAVE_DECLARE_DEPRECATED_SYMBOLS)\n\n"; + print "\n#if defined (OCTAVE_PROVIDE_DEPRECATED_SYMBOLS)\n\n"; foreach $name (sort (@method_names)) { @@ -176,7 +176,7 @@ "; } - ## end OCTAVE_DECLARE_DEPRECATED_SYMBOLS block + ## end OCTAVE_PROVIDE_DEPRECATED_SYMBOLS block print "\n\n#endif\n"; print "\n#endif\n";