diff options
author | Kim F. Storm <storm@cua.dk> | 2005-01-01 13:08:33 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2005-01-01 13:08:33 +0000 |
commit | 82dc617bfb55672c0581e5656beeb3e91036409a (patch) | |
tree | 8de7e8f6ee1218b62e3418329fbf81d9f6b41bfe /lisp/image.el | |
parent | 41d0b0929ca5e9535b52422168a17055fb071a7d (diff) | |
download | emacs-82dc617bfb55672c0581e5656beeb3e91036409a.tar.gz emacs-82dc617bfb55672c0581e5656beeb3e91036409a.tar.bz2 emacs-82dc617bfb55672c0581e5656beeb3e91036409a.zip |
(insert-sliced-image): Use t for line-height property.
Diffstat (limited to 'lisp/image.el')
-rw-r--r-- | lisp/image.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/image.el b/lisp/image.el index 13fdf2f6e4c..9a6c93c04d1 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -263,7 +263,7 @@ The image is automatically split into ROW x COLS slices." (setq x (+ x dx)))) (setq x 0.0 y (+ y dy)) - (insert (propertize "\n" 'line-height 0))))) + (insert (propertize "\n" 'line-height t))))) |