Upstream backed out of the missing lexical binding cookie warnings

This commit is contained in:
Gerard Vermeulen 2024-05-05 16:43:04 +02:00
parent 043cab5a3a
commit 6fd047e606
1 changed files with 4 additions and 11 deletions

View File

@ -260,7 +260,8 @@ of [[info:emacs#Saving Customizations][saving customizations (info)]].
url-cookie-untrusted-urls '(".*")
use-dialog-box nil
use-short-answers t
view-read-only t)
view-read-only t
warning-display-at-bottom nil)
#+end_src
#+caption[Set the second set of Emacs options: pin packages to archives]:
@ -308,21 +309,13 @@ of [[info:emacs#Saving Customizations][saving customizations (info)]].
package-selected-packages '(debbugs no-littering))
#+end_src
#+caption[Set the third set of Emacs options: tweaks]:
#+caption: Set the third set of Emacs options: tweaks.
#+caption[Set the third set of Emacs options: final tweaks]:
#+caption: Set the third set of Emacs options: final tweaks.
#+name: lst:3rd-setopt-call
#+begin_src emacs-lisp -n :results silent
;; Tweak warnings:
(setopt warning-display-at-bottom nil
;; "No way" sign means "press me to stop emitting this warning".
;; Suppress the missing lexical-binding cookie warnings.
;; warning-suppress-log-types '((lexical-binding))
)
;; 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)
;; (byte-recompile-directory "~/VCS/org-contrib/lisp" 0)
;; Postpone (require 'org) after shadowing Org and sh-script faces below.
(when (eq system-type 'darwin)