From 6f077078f757bdca85b02af3eda8da7ce6f43ce7 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Tue, 8 Aug 2006 04:46:10 +0000 Subject: [PATCH] Fix bug introduced in last patch. * lisp/muse-colors.el (muse-colors-explicit-link): Fix recently introduced wrong-type-argument error. git-archimport-id: mwolson@gnu.org--2006/muse--main--1.0--patch-178 --- lisp/muse-colors.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/muse-colors.el b/lisp/muse-colors.el index 9a664d3..ceeaa08 100644 --- a/lisp/muse-colors.el +++ b/lisp/muse-colors.el @@ -780,7 +780,8 @@ in place of an image link defined by BEG and END." ;; see if we should try and inline an image (if (and muse-colors-inline-images (or (muse-colors-resolve-image-file link) - (and (muse-colors-resolve-image-file desc) + (and desc + (muse-colors-resolve-image-file desc) (setq link desc)))) ;; we found an image, so inline it (muse-colors-insert-image -- 2.11.4.GIT