Dave Pearson <davep(a)davep.org> writes:
> I believe the problem is that the code, or some utility function
it calls,
> tries to use make-char-table to create a syntax table. Under XEmacs, you
> call `make-syntax-table' for that purpose. Can you try that modification
> and see if things work out?
I tried this change but it simply caused other problems on loading. Attached
is the diff of the changes I made and here is the backtrace from attempting
to load this new version:
If parse-time.el is from Gnus, you need to upgrade the package. In
Gnus 5.8.7 (I guess it is the newest Gnus package from
ftp.xemacs.org), parse-time-syntax and parse-time-digits are vectors.
,----[ From parse-time.el of Gnus 5.8 ]
| (defvar parse-time-syntax (make-vector 256 nil))
| (defvar parse-time-digits (make-vector 256 nil))
`----
ShengHuo