From 19098062c72923a2b738639148e909989ac9e587 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Mon, 7 Feb 2011 05:31:06 +0900 Subject: [PATCH] (www-edit-display-feature-input-box): If specified object is a symbol, treat it as a feature object. --- cwiki-view.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cwiki-view.el b/cwiki-view.el index e2a2796..1605d68 100644 --- a/cwiki-view.el +++ b/cwiki-view.el @@ -7,6 +7,9 @@ (defun www-edit-display-feature-input-box (char feature-name &optional format value) + (if (symbolp char) + (setq char (or (concord-decode-object '=id char 'feature) + (concord-make-object 'feature char)))) (unless format (setq format 'default)) (unless value -- 1.7.10.4