Switch to builtin Org mode version 9.7.3

This commit is contained in:
Gerard Vermeulen 2024-06-10 09:01:55 +02:00
parent 8441cf4dcd
commit 6d7fca2be4

View File

@ -290,9 +290,8 @@ of [[info:emacs#Saving Customizations][saving customizations (info)]].
#+name: lst:3rd-setopt-call
#+begin_src emacs-lisp -n :results silent
;; To use different Org git repositories (org or gro):
(push (expand-file-name "~/VCS/org-mode/lisp") load-path)
(push (expand-file-name "~/VCS/org-contrib/lisp") load-path)
;; Postpone (require 'org) after shadowing Org and sh-script faces below.
;; (push (expand-file-name "~/VCS/org-mode/lisp") load-path)
;; Postpone loading Org after shadowing Org and sh-script faces below.
(when (eq system-type 'darwin)
;; Failed to initialize color list unarchiver: ...
@ -350,7 +349,6 @@ version.
;; Install and require `no-littering'.
(package-install 'no-littering)
(require 'no-littering)
;; (package-upgrade 'org) ; Use builtin or git!
;; Install the selected packages.
(package-install-selected-packages)))
@ -1080,7 +1078,7 @@ looks for files.
(directory-files-recursively package-user-dir "\\.info\\'"))))
(add-to-list 'Info-directory-list path nil #'file-equal-p)))
;; Make Emacs find the git Org info files.
(push (expand-file-name "~/VCS/org-mode/doc") Info-directory-list)
;; (push (expand-file-name "~/VCS/org-mode/doc") Info-directory-list)
;; Make Emacs find Python info files.
(push (expand-file-name "~/.local/share/info") Info-directory-list))
#+end_src