]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove text property from empty line
authorMatthias Meulien <orontee@gmail.com>
Sun, 8 Nov 2020 15:06:02 +0000 (16:06 +0100)
committerTorsten Hilbrich <torsten.hilbrich@gmx.net>
Thu, 19 Nov 2020 07:32:28 +0000 (08:32 +0100)
lisp/net/dictionary.el

index 1e1d4d9d444f066f1be240f5efdbe1eb34df9961..0682d5511c922d3981825772c97624fe6ba27074 100644 (file)
@@ -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"