summaryrefslogtreecommitdiff
path: root/lisp/image.el
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2004-04-24 23:30:05 +0000
committerKim F. Storm <storm@cua.dk>2004-04-24 23:30:05 +0000
commitc3ea173da5f8718d9b2677915ee632b85e36f045 (patch)
tree96d1edff9a6f21900afb35de8f0c94967b2b5d2a /lisp/image.el
parent21fb758865ac9a02efd9e2d1fab075da72747bf0 (diff)
downloademacs-c3ea173da5f8718d9b2677915ee632b85e36f045.tar.gz
(insert-sliced-image): Add line-spacing t property
to newlines separating image lines.
Diffstat (limited to 'lisp/image.el')
-rw-r--r--lisp/image.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/image.el b/lisp/image.el
index 9d656794aa9..ec974e7a145 100644
--- a/lisp/image.el
+++ b/lisp/image.el
@@ -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)))))