myu2_ has quit [Remote host closed the connection]
ikaros has joined #ocaml
myu2 has quit [Ping timeout: 245 seconds]
myu2 has joined #ocaml
sepp2k has quit [Read error: Connection reset by peer]
ftrvxmtrx_ has joined #ocaml
ftrvxmtrx has quit [Read error: Connection reset by peer]
Submarine has quit [Ping timeout: 276 seconds]
myu2 has quit [Remote host closed the connection]
myu2 has joined #ocaml
avsm has joined #ocaml
Associat0r has quit [Quit: Associat0r]
avsm has quit [Quit: Leaving.]
th5 has joined #ocaml
derdon has joined #ocaml
thomasga has joined #ocaml
myu2 has quit [Read error: Connection reset by peer]
myu2 has joined #ocaml
myu2 has quit [Remote host closed the connection]
valross has quit [Quit: Ex-Chat]
leino has joined #ocaml
<th5>
Does anyone know if the type information from -dtypes (-annot) changed? I set up a new computer and now C-c C-t only returns types for "toplevel" things - i.e. not for nested functions/variables
<flux>
it may have been extended
<flux>
try upgrading your caml-types.el to the one from your ocaml distribution
<flux>
(and posibly other .el-files)
<th5>
Right now I'm using 3.11.2 and the .el files straight from the emacs/ directory in the dist
<flux>
works for me - albeit on 3.11.1
<th5>
hmm - thanks
<flux>
could always be a bug (ie. the .el-files haven't been updatet properly)?
<th5>
i'll poke around a little - see if any of the .el's changed - maybe try compiling 3.11.1 and see if it works there
<flux>
I take it you're sure you've regenerated the .annot files with the new system you're running?-)
<th5>
yes - entirely new install - compiled ocaml from source
<th5>
oh i see what you mean - yes - just made sure i wasnt using old/stale .annot files
avsm has joined #ocaml
<mehdid>
th5: FWIW, works for me with ocaml 3.11.2
<th5>
Thanks for checking.
<th5>
In fact it does work for me. Problem seems to be using camlp5 elsewhere in the file. So this either didn't work for me before or worked because on the old install I was using OCamlSpotter.
_andre has joined #ocaml
th5 has quit [*.net *.split]
jlouis has quit [*.net *.split]
gildor has quit [*.net *.split]
hyperboreean has quit [*.net *.split]
haelix_ has quit [*.net *.split]
sgnb has quit [*.net *.split]
th5 has joined #ocaml
jlouis has joined #ocaml
haelix has joined #ocaml
hyperboreean has joined #ocaml
gildor has joined #ocaml
itewsh has joined #ocaml
itewsh has quit [Read error: Connection reset by peer]
itewsh has joined #ocaml
sgnb has joined #ocaml
_unK has joined #ocaml
itewsh has quit [Quit: There are only 10 kinds of people: those who understand binary and those who don't]
drk-sd has joined #ocaml
_unK has quit [Read error: Operation timed out]
_unK has joined #ocaml
boscop has joined #ocaml
_unK has quit [Remote host closed the connection]
fraggle_laptop has joined #ocaml
iratsu has joined #ocaml
iratsu has quit [Quit: Coyote finally caught me]
iratsu has joined #ocaml
_unK has joined #ocaml
joewilliams_away is now known as joewilliams
barismetin has joined #ocaml
ttamttam has quit [Quit: Leaving.]
jakedouglas has joined #ocaml
ttamttam has joined #ocaml
carter has joined #ocaml
adrien has quit [Quit: Lost terminal]
ftrvxmtrx_ has quit [Quit: Leaving]
ttamttam has quit [Quit: Leaving.]
avsm has quit [Quit: Leaving.]
avsm has joined #ocaml
adrien has joined #ocaml
avsm has quit [Quit: Leaving.]
spearalot has quit [Quit: -arividerchi]
segmond has joined #ocaml
pad has joined #ocaml
travisbrady has joined #ocaml
segmond has left #ocaml []
segmond has joined #ocaml
sepp2k has joined #ocaml
avsm has joined #ocaml
ulfdoz has joined #ocaml
neorab has quit [Ping timeout: 260 seconds]
neorab has joined #ocaml
ftrvxmtrx has joined #ocaml
oriba has joined #ocaml
oc13 has quit [Ping timeout: 264 seconds]
enthymeme has joined #ocaml
carter has left #ocaml []
oc13 has joined #ocaml
ygrek has joined #ocaml
leino has quit [Quit: leaving]
krankkatze has joined #ocaml
ttamttam has joined #ocaml
<krankkatze>
Hi, I'm getting an error I don't understand
<hcarty>
krankkatze: I think you need to add in the function arguments explicitly, rather than relying on currying
<hcarty>
There's a FAQ about this somewhere ... the compiler, in effect, does not make functions polymorphic enough in some situations
<krankkatze>
well
<krankkatze>
oh ok thanks :]
Associat0r has joined #ocaml
<hcarty>
Adding the arguments explicitly to mem and possibly memm should get you closer at least :-)
<krankkatze>
yes, it worked :]
<krankkatze>
thank you
<hcarty>
The toplevel can be helpful for things like this - if you see a lot of '_a where you expect 'a then it may be this same problem
ftrvxmtrx has quit [Read error: Connection reset by peer]
ftrvxmtrx has joined #ocaml
sepp2k has quit [Quit: Leaving.]
schme is now known as schmx
pimmhogeling has joined #ocaml
ccasin has joined #ocaml
avsm has quit [Quit: Leaving.]
pimmhogeling has quit [Remote host closed the connection]
_andre has quit [Quit: *puff*]
avsm has joined #ocaml
oriba has quit [Quit: Verlassend]
<derdon>
how does python's try-except-else look in OCaml? I know how to handle exceptions in OCaml, but not how to define the part which is executed only if no exception was raised
<olegfink>
derdon: just write some code after try ... with? :-)