Hello
I just tested the new org-8 branch and there are several issues.
- 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?
(defun face-at-point ()
"Return the face of the character after point.
If it has more than one face, return the first one.
Return nil if it has no specified face."
(let* ((faceprop (or (get-char-property (point) 'read-face-name)
(get-char-property (point) 'face)
'default))
(face (cond ((symbolp faceprop) faceprop)
;; List of faces (don't treat an attribute spec).
;; Just use the first face.
((and (consp faceprop) (not (keywordp (car faceprop)))
(not (memq (car faceprop)
'(foreground-color background-color))))
(car faceprop))
(t nil)))) ; Invalid face value.
(if (facep face) face nil)))
-
- the other issue has to do with the following error message
Debugger entered--Lisp error: (void-function call-process-shell-command)
call-process-shell-command("command" nil nil nil "-v"
"x11idle")
In the org mailing list it was argued, that
,----
|
| and it does not seem to have call-process-shell-command. This is
| a thin wrapper around call-process (which xemacs should have), so
| this should be easy to port.
`----
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta