barfoos has quit [Read error: 110 (Connection timed out)]
Smerdyakov has quit [Read error: 104 (Connection reset by peer)]
Smerdyakov has joined #ocaml
barfoos has joined #ocaml
bzzbzz has quit ["leaving"]
ulfdoz has joined #ocaml
ulfdoz_ has quit [Read error: 110 (Connection timed out)]
Herrchen_ has joined #ocaml
Herrchen has quit [Connection timed out]
barfoos has quit [Read error: 110 (Connection timed out)]
Smerdyakov has quit []
vezenchio has quit ["ni shi wei yi de shen hua -- wo zhi ai ni You are my super star"]
<ulfdoz>
re
barfoos has joined #ocaml
Snark has joined #ocaml
mlh has quit [Client Quit]
vodka-goo has joined #ocaml
Nutssh has joined #ocaml
pango__ has quit [Remote closed the connection]
_fab has joined #ocaml
pango has joined #ocaml
cpage has quit []
cpage has joined #ocaml
cpage has quit []
cpage has joined #ocaml
Skal has joined #ocaml
barfoos has quit ["BitchX: the un-Cola"]
Nutssh has quit ["Client exiting"]
Submarine has joined #ocaml
Hipo has quit [Read error: 104 (Connection reset by peer)]
Hipo has joined #ocaml
Submarine has quit ["Leaving"]
slashvar[lri] has quit [Remote closed the connection]
Banana has quit ["brb"]
Banana has joined #ocaml
shining has joined #ocaml
<shining>
hi
<shining>
does anyone use tuareg mode in xemacs?
<mflux_>
I do
<mflux_>
but why don't you ask the question. 9 times out of 10 nobody answers to such vague questions ;)
<shining>
oh sorry, I thought nobody used it :) My problem is that I can't get sym lock to work in this distrib
<shining>
it worked fine in debian though. When I launch xemacs sample.ml, symlock fails to launch complaining about fonts
<shining>
hmm it seems it uses adobe-symbol
<mflux_>
I use debian too, so..
<shining>
the problem is that the total output is way too long... it shows me the lisp code, I don't understand anything. The first error is : Symbol's function definition is void: list-fonts
<mflux_>
sufficiently recent xemacs version?
<shining>
I think so
<mflux_>
"`list-fonts' is a built-in function" says my xemacs
<shining>
ha
<mflux_>
what does M-h f list-fonts say?
<mflux_>
C-h f that is..
<shining>
no match
<mflux_>
M-x version
<mflux_>
XEmacs 21.4 (patch 6)
<shining>
hmm, problem is that I don't know emacs at all. I was just able to handle basic tuareg funcitonality
<shining>
M-x version doesnt seem to work
<mflux_>
maybe you have gnu-emacs and not x-emacs?-o
<shining>
XEmacs 21.5 (beta21)
<mflux_>
maybe it's too recent then :)
<shining>
:)
<shining>
well maybe xemacs debian package includes more things too
<shining>
if I miss a function
<shining>
hmm I've a lot of list-something, but not fonts
<mflux_>
do you run xemacs in X?
<shining>
yes
<mflux_>
well, I'm fresh out of ideas then
<shining>
hmm yes, I saw there could be troubles if it wasnt used in X
<mflux_>
maybe you can (defun list-fonts () '())
<shining>
I'm on xemacs right now, but its quite dead
<shining>
mflux_: where do I do that?
<shining>
in the config file?
<mflux_>
in some init-file such as ~/.xemacs/init.el
<shining>
ok
<mflux_>
actually no
<mflux_>
(defun list-fonts (a) '())
<mflux_>
or even (defun list-fonts (a &optional b) '())
<shining>
I tried this one (defun list-fonts (a) '()), I don't get any errors anymore. I don't think it works though :)
<shining>
it should translate the -> right?
<mflux_>
what?
<mflux_>
it should define a function given any argument will return an empty list
<mflux_>
but maybe it requires some fonts to be found to work
<shining>
yep
<shining>
it should return adobe-symbol or something
<shining>
Within XEmacs (more generally, if you have variable-sized fonts and `atomic-extents' library supported) you may also want to use Sym-Lock Warning: MULE (multilingual) versions of XEmacs do not support multiple font encodings in a single buffer, which is required by Sym-Lock.
<shining>
I don't really know what a variable-sized fonts is, and I can't find what atomic-extents is, if it's supported or not
<mflux_>
try replacing '() with '("adobe-symbol") or '(adobe-symbol) then