diff options
author | Matthias Meulien <orontee@gmail.com> | 2020-11-08 16:06:02 +0100 |
---|---|---|
committer | Torsten Hilbrich <torsten.hilbrich@gmx.net> | 2020-11-19 08:32:28 +0100 |
commit | 28fe1349711e36bd65542472cd3fb0d94c5e2bb2 (patch) | |
tree | 0ef85b576275365e207abd7904c6db405f7dde1f | |
parent | 91ff1c8f7cf5b137b214b0b70a7267d34c1f6b36 (diff) | |
download | emacs-28fe1349711e36bd65542472cd3fb0d94c5e2bb2.tar.gz |
Remove text property from empty line
-rw-r--r-- | lisp/net/dictionary.el | 6 |
1 files changed, 3 insertions, 3 deletions
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" |