>Copy the following expression to the *Scratch* buffer in XEmacs,
>substitute an appropriate file name, place the cursor after the last
>parenthesis and press `C-j':
>
>(let ((str "foo")
> (filename "/tmp/imaxima1542uaQ/1"))
> (set-text-properties 0 (length str)
> `(begin-glyph
> ,(make-glyph (vector 'png :file filename)))
> str)
> str)
>
>What happens?
This shows the picture followed by the text foo all in quotation marks.
"[picture]foo"
When i substituted the / with \, xemacs displayed only "foo".
Osmo