2000-06-13 Dave Love <fx@gnu.org>
+ * image.el (put-image): Default STRING to a space.
+
* info.el Doc fixes.
(Info-build-node-completions): Match Ref tags.
display it in the text area, a value of `left-margin' means
display it in the left marginal area, a value of `right-margin'
means display it in the right marginal area."
- (unless string (setq string "x"))
+ ;; Use a space as least likely to cause trouble when it's a hidden
+ ;; character in the buffer.
+ (unless string (setq string " "))
(let ((buffer (current-buffer)))
(unless (eq (car-safe image) 'image)
(error "Not an image: %s" image))