[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [External] : Re: master 29bf0a8b31b 1/2: ; * etc/NEWS: Fix typos.
From: |
Drew Adams |
Subject: |
RE: [External] : Re: master 29bf0a8b31b 1/2: ; * etc/NEWS: Fix typos. |
Date: |
Thu, 17 Oct 2024 18:33:30 +0000 |
(Caveat: I don't have Emacs 30.)
I think it should be enough, to test this, to just
load file bookmark+-mac.el, then file bookmark+-key.el.
There are no dependencies on any other Bookmark+ files.
This is the beginning of bookmark+-key.el:
(eval-when-compile
(or (condition-case nil
(load-library "bookmark+-mac") ; Use load-library to ensure latest
.elc.
(error nil))
(require 'bookmark+-mac))); Require, so can load separately if not on
`load-path'.
(eval-when-compile (unless (require 'cl-lib nil t)
(require 'cl)
(defalias 'cl-case 'case)))
File bookmark+-mac.el defines macro `bmkp-menu-bar-make-toggle',
which is used in bookmark+-key.el.