Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Sveningsson
dotfiles
Commits
6379086a
Commit
6379086a
authored
Apr 24, 2021
by
David Sveningsson
Browse files
emacs: fix libgnutls-version issue
parent
b7b8ba1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
global/emacs.d/init.org
View file @
6379086a
...
...
@@ -2,7 +2,7 @@
#+PROPERTY: header-args :comments yes :results silent
* Repos
#+BEGIN_SRC emacs-lisp
(if (and (version< emacs-version "26.3") (>= libgnutls-version 30600))
(if (and (version< emacs-version "26.3")
(boundp 'libgnutls-version)
(>= libgnutls-version 30600))
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3"))
(when (< emacs-major-version 27)
(require 'package))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment