From 08fdcd2abfc55d901ba865342c76d2e12747c339 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 18 Jul 2024 20:56:41 -0400 Subject: [PATCH] docs(macos): doctor: mention auth-source-macos-keychain bug in <29.3 I'm not actually sure when this was fixed, but the bug report title claims this was reported in 29.1, so I'll assume it was merged by 29.3. Needs verifying. The explanation could use some work, but this'll do for now. I'll welcome PRs to expand it if I don't get to it first. Ref: https://lists.gnu.org/archive/html/bug-gnu-emacs/2023-08/msg00560.html --- modules/os/macos/doctor.el | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 modules/os/macos/doctor.el diff --git a/modules/os/macos/doctor.el b/modules/os/macos/doctor.el new file mode 100644 index 000000000..f9684be69 --- /dev/null +++ b/modules/os/macos/doctor.el @@ -0,0 +1,6 @@ +;;; os/macos/doctor.el -*- lexical-binding: t; -*- + +;; See https://lists.gnu.org/archive/html/bug-gnu-emacs/2023-08/msg00560.html +(when (version< emacs-version "29.3") + (warn! "There are bugs in multi-user Keychain integration on Emacs <=29.2") + (explain! "See https://lists.gnu.org/archive/html/bug-gnu-emacs/2023-08/msg00560.html"))