diff options
author | Jesús <heckyel@hyperbola.info> | 2021-02-07 16:22:46 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-02-07 16:22:46 -0500 |
commit | 58cc480658a33df0dd4cf9de69fd58d839bf3a6e (patch) | |
tree | ff55276731830d26a7a9d7bef5da578a4066b564 | |
parent | d590aa16a8956765104372e9ef87398025d49a76 (diff) | |
download | emacs-personal-58cc480658a33df0dd4cf9de69fd58d839bf3a6e.tar.lz emacs-personal-58cc480658a33df0dd4cf9de69fd58d839bf3a6e.tar.xz emacs-personal-58cc480658a33df0dd4cf9de69fd58d839bf3a6e.zip |
minor fix TLS in emacs 26.x
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ (setq package-check-signature 'allow-unsigned) ;;; Fix TLS emacs 26.x -(if (version<= emacs-version "26.0") +(if (version<= emacs-version "26.2") (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")) ;;; Welcome message |