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
6 lines
337 B
EmacsLisp
6 lines
337 B
EmacsLisp
;;; 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"))
|