From 3896b618c23a4c9f07cdbf620b19a69f304fdc01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Sat, 30 Sep 2017 14:32:48 +0200 Subject: [PATCH] workaround for security vulnerability in Emacs >= 21.1 and < 25.3 --- init.el | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/init.el b/init.el index 477149e..cd023e7 100644 --- a/init.el +++ b/init.el @@ -688,6 +688,16 @@ inserted between the braces between the braces." (incf character))) +;;; Workaround for security vulnerability in Emacs >= 21.1 and < 25.3 +;;; ----------------------------------------------------------------- +;;; +;;; See [Changes in Emacs 25.3](https://www.gnu.org/software/emacs/news/NEWS.25.3) + +(eval-after-load "enriched" + '(defun enriched-decode-display-prop (start end &optional param) + (list start end))) + + ;;; Rest ;;; ----