To: vim_dev@googlegroups.com Subject: Patch 8.2.2174 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 8.2.2174 Problem: Mac version doesn't specify the CPU architecture. Solution: Add "arm64" or "x86_64". (Yee Cheng Chin, closes #7519) Files: src/version.c *** ../vim-8.2.2173/src/version.c 2020-12-20 21:43:31.704882194 +0100 --- src/version.c 2020-12-21 13:05:32.311576924 +0100 *************** *** 5333,5338 **** --- 5335,5345 ---- # else msg_puts(_("\nmacOS version w/o darwin feat.")); # endif + # if defined(__arm64__) + msg_puts(" - arm64"); + # elif defined(__x86_64__) + msg_puts(" - x86_64"); + # endif #endif #ifdef VMS *** ../vim-8.2.2173/src/version.c 2020-12-20 21:43:31.704882194 +0100 --- src/version.c 2020-12-21 13:05:32.311576924 +0100 *************** *** 752,753 **** --- 752,755 ---- { /* Add new patch number below this line */ + /**/ + 2174, /**/ -- For humans, honesty is a matter of degree. Engineers are always honest in matters of technology and human relationships. That's why it's a good idea to keep engineers away from customers, romantic interests, and other people who can't handle the truth. (Scott Adams - The Dilbert principle) /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///