Hi Paul, On 09/11/2023 18:51, Paul Eggert wrote:
Thanks for the reviews. I installed the attached.
# if (defined MAC_OS_X_VERSION_MIN_REQUIRED \ && 101300 <= MAC_OS_X_VERSION_MIN_REQUIRED)This is wrong, you're applying the change to anything before High Sierra (10.13). You're after Ventura and above (13).
# if (defined MAC_OS_X_VERSION_MIN_REQUIRED \ && 130000 >= MAC_OS_X_VERSION_MIN_REQUIRED) Sevan