diff options
-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 |