diff options
author | Jesús <heckyel@hyperbola.info> | 2020-12-09 21:25:14 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-12-09 21:25:14 -0500 |
commit | 8f5c76f5d7d1fe43b7c0a15127bfc421e8ece8b8 (patch) | |
tree | 4aa3391952a85a3fc8dc260a14cbbb95d10efaea /init.el | |
parent | 5cb1c1bec5a19b48acca19303eca73a87f307ec6 (diff) | |
download | emacs-personal-8f5c76f5d7d1fe43b7c0a15127bfc421e8ece8b8.tar.lz emacs-personal-8f5c76f5d7d1fe43b7c0a15127bfc421e8ece8b8.tar.xz emacs-personal-8f5c76f5d7d1fe43b7c0a15127bfc421e8ece8b8.zip |
Fix conditional version
Diffstat (limited to 'init.el')
-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< "26.0" emacs-version) +(if (version<= emacs-version "26.0") (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")) ;;; Welcome message |