https://github.com/EasyCrypt/easycrypt
Revision bef56493548b15d0079147f04a39126598c408fc authored by François Dupressoir on 12 May 2022, 13:34:34 UTC, committed by Pierre-Yves Strub on 12 July 2022, 16:44:15 UTC
`lemma ... by [].` is now short for `lemma ... by (by []).` (instead of `by smt.`)

Fixes #191.
1 parent 57be028
Raw File
Tip revision: bef56493548b15d0079147f04a39126598c408fc authored by François Dupressoir on 12 May 2022, 13:34:34 UTC
unify meaning of `by []`
Tip revision: bef5649
.dir-locals.el
((tuareg-mode .
   ((require-final-newline . t)
    (c-basic-offset . 2)
    (tab-width . 2)
    (indent-tabs-mode . nil)
    (eval . (add-hook 'write-contents-functions 'delete-trailing-whitespace)))))
 (easycrypt-mode .
   ((require-final-newline . t)
    (indent-tabs-mode . nil)))
back to top