diff options
author | Jesús <heckyel@hyperbola.info> | 2020-08-06 11:45:42 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-08-06 11:45:42 -0500 |
commit | 7feda7ff72f76a13c2fe5764ce928ca39b268242 (patch) | |
tree | 832e83f42f83fe79cdf7a3723de2c5c3b64d1687 /init.el | |
parent | b2e37932286490acfbc7e70b4b1ce558927b81fa (diff) | |
download | emacs-personal-7feda7ff72f76a13c2fe5764ce928ca39b268242.tar.lz emacs-personal-7feda7ff72f76a13c2fe5764ce928ca39b268242.tar.xz emacs-personal-7feda7ff72f76a13c2fe5764ce928ca39b268242.zip |
Fix algoritm version previous to 26.x
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -13,7 +13,8 @@ (setq package-check-signature 'allow-unsigned) ;;; Fix TLS emacs 26.x -(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") +(if (version< "26.0" emacs-version) + (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")) ;;; Welcome message (setq-default initial-scratch-message |