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