]> git.eshelyaron.com Git - emacs.git/commitdiff
(insert-sliced-image): Add line-spacing t property
authorKim F. Storm <storm@cua.dk>
Sat, 24 Apr 2004 23:30:05 +0000 (23:30 +0000)
committerKim F. Storm <storm@cua.dk>
Sat, 24 Apr 2004 23:30:05 +0000 (23:30 +0000)
to newlines separating image lines.

lisp/image.el

index 9d656794aa9423c20d252c0214e3a8c65f9fc960..ec974e7a145cdc22f0f429fd93bf46e7bb825e75 100644 (file)
@@ -241,7 +241,7 @@ height of the image; integer values are taken as pixel values."
          (setq x (+ x dx))))
       (setq x 0.0
            y (+ y dy))
-      (insert "\n"))))
+      (insert (propertize "\n" 'line-spacing t)))))