From 71086e05946bc452619070f774274c442783611e Mon Sep 17 00:00:00 2001 From: Mitchell Tishmack Date: Sat, 7 Nov 2020 11:46:10 -0600 Subject: [PATCH] Fix minor bug if emacs 27.1 is in use --- emacs.org | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/emacs.org b/emacs.org index f15a3e2..04739f7 100644 --- a/emacs.org +++ b/emacs.org @@ -315,8 +315,9 @@ detection. But again as I don't use/speak/read them. Ok tradeoff. #+BEGIN_SRC emacs-lisp (if (version<= "27.1" emacs-version) - ((setq bidi-inhibit-bpa t) - (global-so-long-mode 1))) + (progn + (setq bidi-inhibit-bpa t) + (global-so-long-mode 1))) #+END_SRC Ref: https://200ok.ch/posts/2020-09-29_comprehensive_guide_on_handling_long_lines_in_emacs.html