Skip to content

Commit

Permalink
Added limitation section into the spec; fixed typo in spec; fixed .gd…
Browse files Browse the repository at this point in the history
…binit
  • Loading branch information
dboulytchev committed Feb 25, 2021
1 parent a9d9a4e commit 8bdd666
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions gdb/.gdbinit
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
define pp
p (char*) Bstringval ((void*) $arg0)
p (char*) Lstring ((void*) $arg0)
end

define pc
p (char*) Bstringval ((void*) ((*(int**)($ebp-4)) [$arg0]))
p (char*) Lstring ((void*) ((*(int**)($ebp-4)) [$arg0]))
end
2 changes: 1 addition & 1 deletion spec/04.extensions.tex
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ \section{Custom Infix Operators}

Respectively, multiple imports of units with custom infix operators will modify the precedence level in the order of their import. For example,
if there are two units "\lstinline|A|" and "\lstinline|B|" with declarations "\lstinline|infixl ++ before +|" and "\lstinline|infixl +++ before +|"
correspondingly, then importing "\lstinline|B|" after "\lstinline|B|" will result in "\lstinline|++|" having a \emph{lower} precedence, then
correspondingly, then importing "\lstinline|A|" after "\lstinline|B|" will result in "\lstinline|++|" having a \emph{lower} precedence, then
"\lstinline|+++|".

\begin{figure}[t]
Expand Down
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions spec/lama-spec.tex
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,9 @@
\input{03.concrete_syntax}
\input{04.extensions}
\input{05.driver_options}
\input{06.debugging}
\input{07.standard_library}
\input{06.limitations}
\input{07.debugging}
\input{08.standard_library}

\bibliographystyle{plainurl}
\bibliography{lama-spec}
Expand Down
2 changes: 1 addition & 1 deletion src/stdpath.ml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let path = "/home/db/.opam/4.07.1+fp+flambda/share/Lama"
let path = "/home/db/.opam/lama/share/Lama"
2 changes: 1 addition & 1 deletion src/version.ml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let version = "Version 1.10, 59f78fe38, Mon Feb 1 10:39:12 2021 +0300"
let version = "Version 1.10, a9d9a4e2b, Sat Feb 13 11:16:28 2021 +0300"

0 comments on commit 8bdd666

Please sign in to comment.