From: Matthias Meulien Date: Sun, 8 Nov 2020 15:06:02 +0000 (+0100) Subject: Remove text property from empty line X-Git-Tag: emacs-28.0.90~4726^2~18 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=28fe134971;p=emacs.git Remove text property from empty line --- diff --git a/lisp/net/dictionary.el b/lisp/net/dictionary.el index 1e1d4d9d444..0682d5511c9 100644 --- a/lisp/net/dictionary.el +++ b/lisp/net/dictionary.el @@ -788,9 +788,9 @@ This function knows about the special meaning of quotes (\")" dictionary-description-open-delimiter (dictionary-decode-charset description dictionary) dictionary-description-close-delimiter - " [" (dictionary-decode-charset dictionary dictionary) "]:" - "\n\n") - (put-text-property start (point) 'face 'dictionary-word-entry-face))) + " [" (dictionary-decode-charset dictionary dictionary) "]:") + (put-text-property start (point) 'face 'dictionary-word-entry-face) + (insert "\n\n"))) (defun dictionary-display-word-definition (reply word dictionary) "Insert the definition for the current word"