aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Meulien2020-11-08 16:06:02 +0100
committerTorsten Hilbrich2020-11-19 08:32:28 +0100
commit28fe1349711e36bd65542472cd3fb0d94c5e2bb2 (patch)
tree0ef85b576275365e207abd7904c6db405f7dde1f
parent91ff1c8f7cf5b137b214b0b70a7267d34c1f6b36 (diff)
downloademacs-28fe1349711e36bd65542472cd3fb0d94c5e2bb2.tar.gz
emacs-28fe1349711e36bd65542472cd3fb0d94c5e2bb2.zip
Remove text property from empty line
-rw-r--r--lisp/net/dictionary.el6
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 (\")"
788 dictionary-description-open-delimiter 788 dictionary-description-open-delimiter
789 (dictionary-decode-charset description dictionary) 789 (dictionary-decode-charset description dictionary)
790 dictionary-description-close-delimiter 790 dictionary-description-close-delimiter
791 " [" (dictionary-decode-charset dictionary dictionary) "]:" 791 " [" (dictionary-decode-charset dictionary dictionary) "]:")
792 "\n\n") 792 (put-text-property start (point) 'face 'dictionary-word-entry-face)
793 (put-text-property start (point) 'face 'dictionary-word-entry-face))) 793 (insert "\n\n")))
794 794
795(defun dictionary-display-word-definition (reply word dictionary) 795(defun dictionary-display-word-definition (reply word dictionary)
796 "Insert the definition for the current word" 796 "Insert the definition for the current word"