>>>> Uwe Brauer <oub(a)mat.ucm.es> writes:
- org needs the function face-at-point, which GNU emacs has in
its
faces.el, we don't have, I just copied the function and it
worked. Could it please be added to faces.el or
fsf-compat.el?
Are you sure it works as expected? I did some simple tests and it
seems to return nil always.
(defun face-at-point ()
[...]
(if (facep face) face nil)))
I think the problem is that GNU wants a face name in facep but we want
a face OBJECT. So the line above should be replaced with this (I think)
(if (find-face face) face nil)))
Comments anyone?
I also had a look in our faces.el and it seems like syncing isn't that
easy since we have our own implementation. So I guess just adding
face-at-point to faces.el will suffice.
Yours
--
%% Mats
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta