progress fixing compile errors resulting from adding 'bufferModifyTime' field (fixed normal-mode move expressions)
This commit is contained in:
@@ -2,6 +2,6 @@ structure AppUpdate =
|
|||||||
struct
|
struct
|
||||||
open AppType
|
open AppType
|
||||||
|
|
||||||
fun update (app, msg) =
|
fun update (app, msg, time) =
|
||||||
case #mode app of NORMAL_MODE str => NormalMode.update (app, str, msg)
|
case #mode app of NORMAL_MODE str => NormalMode.update (app, str, msg, time)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -3,11 +3,13 @@ struct
|
|||||||
open AppType
|
open AppType
|
||||||
|
|
||||||
fun bufferAndSize
|
fun bufferAndSize
|
||||||
(app: app_type, newBuffer, newWidth, newHeight, newSearchList, newMsgs) =
|
(app: app_type, newBuffer, newWidth, newHeight, newSearchList, newMsgs,
|
||||||
|
newBufferModifyTime) =
|
||||||
let
|
let
|
||||||
val
|
val
|
||||||
{ mode
|
{ mode
|
||||||
, buffer = _
|
, buffer = _
|
||||||
|
, bufferModifyTime = _
|
||||||
, windowWidth = _
|
, windowWidth = _
|
||||||
, windowHeight = _
|
, windowHeight = _
|
||||||
, searchList = _
|
, searchList = _
|
||||||
@@ -19,6 +21,7 @@ struct
|
|||||||
in
|
in
|
||||||
{ mode = mode
|
{ mode = mode
|
||||||
, buffer = newBuffer
|
, buffer = newBuffer
|
||||||
|
, bufferModifyTime = newBufferModifyTime
|
||||||
, windowWidth = newWidth
|
, windowWidth = newWidth
|
||||||
, windowHeight = newHeight
|
, windowHeight = newHeight
|
||||||
, searchList = newSearchList
|
, searchList = newSearchList
|
||||||
@@ -37,11 +40,13 @@ struct
|
|||||||
, newStartLine
|
, newStartLine
|
||||||
, newSearchList
|
, newSearchList
|
||||||
, newMsgs
|
, newMsgs
|
||||||
|
, newBufferModifyTime
|
||||||
) =
|
) =
|
||||||
let
|
let
|
||||||
val
|
val
|
||||||
{ mode = _
|
{ mode = _
|
||||||
, buffer = _
|
, buffer = _
|
||||||
|
, bufferModifyTime = _
|
||||||
, cursorIdx = _
|
, cursorIdx = _
|
||||||
, startLine = _
|
, startLine = _
|
||||||
, searchList = _
|
, searchList = _
|
||||||
@@ -53,6 +58,7 @@ struct
|
|||||||
in
|
in
|
||||||
{ mode = newMode
|
{ mode = newMode
|
||||||
, buffer = newBuffer
|
, buffer = newBuffer
|
||||||
|
, bufferModifyTime = newBufferModifyTime
|
||||||
, cursorIdx = newCursorIdx
|
, cursorIdx = newCursorIdx
|
||||||
, startLine = newStartLine
|
, startLine = newStartLine
|
||||||
, searchList = newSearchList
|
, searchList = newSearchList
|
||||||
@@ -69,6 +75,7 @@ struct
|
|||||||
{ mode = _
|
{ mode = _
|
||||||
, msgs = _
|
, msgs = _
|
||||||
, buffer
|
, buffer
|
||||||
|
, bufferModifyTime
|
||||||
, searchList
|
, searchList
|
||||||
, searchString
|
, searchString
|
||||||
, cursorIdx
|
, cursorIdx
|
||||||
@@ -80,6 +87,7 @@ struct
|
|||||||
{ mode = newMode
|
{ mode = newMode
|
||||||
, msgs = newMsgs
|
, msgs = newMsgs
|
||||||
, buffer = buffer
|
, buffer = buffer
|
||||||
|
, bufferModifyTime = bufferModifyTime
|
||||||
, searchList = searchList
|
, searchList = searchList
|
||||||
, searchString = searchString
|
, searchString = searchString
|
||||||
, cursorIdx = cursorIdx
|
, cursorIdx = cursorIdx
|
||||||
@@ -89,11 +97,12 @@ struct
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
fun searchList (app: app_type, newSearchList, newBuffer, newSearchString) =
|
fun searchList (app: app_type, newSearchList, newBuffer, newSearchString, newBufferModifyTime) =
|
||||||
let
|
let
|
||||||
val
|
val
|
||||||
{ searchList = _
|
{ searchList = _
|
||||||
, buffer = _
|
, buffer = _
|
||||||
|
, bufferModifyTime
|
||||||
, searchString = _
|
, searchString = _
|
||||||
, msgs
|
, msgs
|
||||||
, mode
|
, mode
|
||||||
@@ -105,6 +114,7 @@ struct
|
|||||||
in
|
in
|
||||||
{ searchList = newSearchList
|
{ searchList = newSearchList
|
||||||
, buffer = newBuffer
|
, buffer = newBuffer
|
||||||
|
, bufferModifyTime = newBufferModifyTime
|
||||||
, searchString = newSearchString
|
, searchString = newSearchString
|
||||||
, msgs = msgs
|
, msgs = msgs
|
||||||
, mode = mode
|
, mode = mode
|
||||||
@@ -120,6 +130,7 @@ struct
|
|||||||
val
|
val
|
||||||
{ startLine
|
{ startLine
|
||||||
, buffer
|
, buffer
|
||||||
|
, bufferModifyTime
|
||||||
, searchList
|
, searchList
|
||||||
, searchString
|
, searchString
|
||||||
, mode
|
, mode
|
||||||
@@ -131,6 +142,7 @@ struct
|
|||||||
in
|
in
|
||||||
{ startLine = startLine
|
{ startLine = startLine
|
||||||
, buffer = buffer
|
, buffer = buffer
|
||||||
|
, bufferModifyTime = bufferModifyTime
|
||||||
, searchList = searchList
|
, searchList = searchList
|
||||||
, searchString = searchString
|
, searchString = searchString
|
||||||
, mode = mode
|
, mode = mode
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ struct
|
|||||||
fun clearMode app =
|
fun clearMode app =
|
||||||
AppWith.mode (app, NORMAL_MODE "", [])
|
AppWith.mode (app, NORMAL_MODE "", [])
|
||||||
|
|
||||||
fun buildTextAndClear (app: app_type, buffer, cursorIdx, searchList, msgs) =
|
fun buildTextAndClear (app: app_type, buffer, cursorIdx, searchList, msgs,
|
||||||
|
bufferModifyTime) =
|
||||||
let
|
let
|
||||||
val {windowWidth, windowHeight, startLine, searchString, ...} = app
|
val {windowWidth, windowHeight, startLine, searchString, ...} = app
|
||||||
|
|
||||||
@@ -37,15 +38,15 @@ struct
|
|||||||
val mode = NORMAL_MODE ""
|
val mode = NORMAL_MODE ""
|
||||||
in
|
in
|
||||||
AppWith.bufferAndCursorIdx
|
AppWith.bufferAndCursorIdx
|
||||||
(app, buffer, cursorIdx, mode, startLine, searchList, msgs)
|
(app, buffer, cursorIdx, mode, startLine, searchList, msgs, bufferModifyTime)
|
||||||
end
|
end
|
||||||
|
|
||||||
fun withSearchList (app: app_type, searchList) =
|
fun withSearchList (app: app_type, searchList) =
|
||||||
let
|
let
|
||||||
val {buffer, searchString, cursorIdx, ...} = app
|
val {buffer, searchString, cursorIdx, bufferModifyTime, ...} = app
|
||||||
val app = AppWith.searchList (app, searchList, buffer, searchString)
|
val app = AppWith.searchList (app, searchList, buffer, searchString, bufferModifyTime)
|
||||||
in
|
in
|
||||||
buildTextAndClear (app, buffer, cursorIdx, searchList, [])
|
buildTextAndClear (app, buffer, cursorIdx, searchList, [], bufferModifyTime)
|
||||||
end
|
end
|
||||||
|
|
||||||
fun resizeText (app: app_type, newWidth, newHeight) =
|
fun resizeText (app: app_type, newWidth, newHeight) =
|
||||||
@@ -58,6 +59,7 @@ struct
|
|||||||
, cursorIdx
|
, cursorIdx
|
||||||
, searchList
|
, searchList
|
||||||
, searchString
|
, searchString
|
||||||
|
, bufferModifyTime
|
||||||
, ...
|
, ...
|
||||||
} = app
|
} = app
|
||||||
|
|
||||||
@@ -76,7 +78,7 @@ struct
|
|||||||
)
|
)
|
||||||
in
|
in
|
||||||
AppWith.bufferAndSize
|
AppWith.bufferAndSize
|
||||||
(app, newBuffer, newWidth, newHeight, searchList, drawMsg)
|
(app, newBuffer, newWidth, newHeight, searchList, drawMsg, bufferModifyTime)
|
||||||
end
|
end
|
||||||
|
|
||||||
(* Difference between this and buildTextAndClear is that
|
(* Difference between this and buildTextAndClear is that
|
||||||
@@ -85,7 +87,7 @@ struct
|
|||||||
* Since the cursor may move away a lot, it is best to recenter.
|
* Since the cursor may move away a lot, it is best to recenter.
|
||||||
* *)
|
* *)
|
||||||
fun buildTextAndClearAfterChr
|
fun buildTextAndClearAfterChr
|
||||||
(app: app_type, buffer, cursorIdx, searchList, initialMsg) =
|
(app: app_type, buffer, cursorIdx, searchList, initialMsg, bufferModifyTime) =
|
||||||
let
|
let
|
||||||
val {windowWidth, windowHeight, startLine, searchString, ...} = app
|
val {windowWidth, windowHeight, startLine, searchString, ...} = app
|
||||||
|
|
||||||
@@ -114,7 +116,7 @@ struct
|
|||||||
val mode = NORMAL_MODE ""
|
val mode = NORMAL_MODE ""
|
||||||
in
|
in
|
||||||
AppWith.bufferAndCursorIdx
|
AppWith.bufferAndCursorIdx
|
||||||
(app, buffer, cursorIdx, mode, startLine, searchList, drawMsg)
|
(app, buffer, cursorIdx, mode, startLine, searchList, drawMsg, bufferModifyTime)
|
||||||
end
|
end
|
||||||
|
|
||||||
fun centreToCursor (app: app_type) =
|
fun centreToCursor (app: app_type) =
|
||||||
@@ -127,6 +129,7 @@ struct
|
|||||||
, cursorIdx
|
, cursorIdx
|
||||||
, searchList
|
, searchList
|
||||||
, searchString
|
, searchString
|
||||||
|
, bufferModifyTime
|
||||||
, ...
|
, ...
|
||||||
} = app
|
} = app
|
||||||
val buffer = LineGap.goToIdx (cursorIdx, buffer)
|
val buffer = LineGap.goToIdx (cursorIdx, buffer)
|
||||||
@@ -149,6 +152,6 @@ struct
|
|||||||
)
|
)
|
||||||
in
|
in
|
||||||
AppWith.bufferAndCursorIdx
|
AppWith.bufferAndCursorIdx
|
||||||
(app, buffer, cursorIdx, NORMAL_MODE "", startLine, searchList, drawMsg)
|
(app, buffer, cursorIdx, NORMAL_MODE "", startLine, searchList, drawMsg, bufferModifyTime)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -12,7 +12,12 @@ functor MakeMove(Fn: MOVE): MAKE_MOVE =
|
|||||||
struct
|
struct
|
||||||
fun helpMove (app: AppType.app_type, buffer, cursorIdx, count) =
|
fun helpMove (app: AppType.app_type, buffer, cursorIdx, count) =
|
||||||
if count = 0 then
|
if count = 0 then
|
||||||
Finish.buildTextAndClear (app, buffer, cursorIdx, #searchList app, [])
|
let
|
||||||
|
val {searchList, bufferModifyTime, ...} = app
|
||||||
|
in
|
||||||
|
Finish.buildTextAndClear (app, buffer, cursorIdx, searchList, [],
|
||||||
|
bufferModifyTime)
|
||||||
|
end
|
||||||
else
|
else
|
||||||
(* move LineGap to cursorIdx, which is necessary for finding newCursorIdx *)
|
(* move LineGap to cursorIdx, which is necessary for finding newCursorIdx *)
|
||||||
let
|
let
|
||||||
@@ -58,11 +63,11 @@ functor MakeDfaMove(Fn: DFA_MOVE): MAKE_DFA_MOVE =
|
|||||||
struct
|
struct
|
||||||
fun move (app: AppType.app_type, count) =
|
fun move (app: AppType.app_type, count) =
|
||||||
let
|
let
|
||||||
val {buffer, cursorIdx, ...} = app
|
val {buffer, cursorIdx, searchList, bufferModifyTime, ...} = app
|
||||||
val buffer = LineGap.goToIdx (cursorIdx, buffer)
|
val buffer = LineGap.goToIdx (cursorIdx, buffer)
|
||||||
val cursorIdx = Fn.fMove (buffer, cursorIdx, count)
|
val cursorIdx = Fn.fMove (buffer, cursorIdx, count)
|
||||||
in
|
in
|
||||||
Finish.buildTextAndClear (app, buffer, cursorIdx, #searchList app, [])
|
Finish.buildTextAndClear (app, buffer, cursorIdx, searchList, [], bufferModifyTime)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,8 @@ struct
|
|||||||
|
|
||||||
fun moveToStart (app: app_type) =
|
fun moveToStart (app: app_type) =
|
||||||
let
|
let
|
||||||
val {buffer, windowWidth, windowHeight, searchList, searchString, ...} =
|
val {buffer, windowWidth, windowHeight, searchList, searchString,
|
||||||
|
bufferModifyTime, ...} =
|
||||||
app
|
app
|
||||||
|
|
||||||
val cursorIdx = 0
|
val cursorIdx = 0
|
||||||
@@ -25,12 +26,13 @@ struct
|
|||||||
val mode = NORMAL_MODE ""
|
val mode = NORMAL_MODE ""
|
||||||
in
|
in
|
||||||
AppWith.bufferAndCursorIdx
|
AppWith.bufferAndCursorIdx
|
||||||
(app, buffer, cursorIdx, mode, startLine, searchList, drawMsg)
|
(app, buffer, cursorIdx, mode, startLine, searchList, drawMsg, bufferModifyTime)
|
||||||
end
|
end
|
||||||
|
|
||||||
fun moveToEnd (app: app_type) =
|
fun moveToEnd (app: app_type) =
|
||||||
let
|
let
|
||||||
val {buffer, windowWidth, windowHeight, searchList, searchString, ...} =
|
val {buffer, windowWidth, windowHeight, searchList, searchString,
|
||||||
|
bufferModifyTime, ...} =
|
||||||
app
|
app
|
||||||
|
|
||||||
val buffer = LineGap.goToEnd buffer
|
val buffer = LineGap.goToEnd buffer
|
||||||
@@ -66,7 +68,7 @@ struct
|
|||||||
val mode = NORMAL_MODE ""
|
val mode = NORMAL_MODE ""
|
||||||
in
|
in
|
||||||
AppWith.bufferAndCursorIdx
|
AppWith.bufferAndCursorIdx
|
||||||
(app, buffer, bufferIdx, mode, bufferLine, searchList, drawMsg)
|
(app, buffer, bufferIdx, mode, bufferLine, searchList, drawMsg, bufferModifyTime)
|
||||||
end
|
end
|
||||||
|
|
||||||
fun moveToLine (app: app_type, reqLine) =
|
fun moveToLine (app: app_type, reqLine) =
|
||||||
@@ -81,6 +83,7 @@ struct
|
|||||||
, startLine = origLine
|
, startLine = origLine
|
||||||
, searchList
|
, searchList
|
||||||
, searchString
|
, searchString
|
||||||
|
, bufferModifyTime
|
||||||
, ...
|
, ...
|
||||||
} = app
|
} = app
|
||||||
val buffer = LineGap.goToLine (reqLine, buffer)
|
val buffer = LineGap.goToLine (reqLine, buffer)
|
||||||
@@ -109,7 +112,7 @@ struct
|
|||||||
val mode = NORMAL_MODE ""
|
val mode = NORMAL_MODE ""
|
||||||
in
|
in
|
||||||
AppWith.bufferAndCursorIdx
|
AppWith.bufferAndCursorIdx
|
||||||
(app, buffer, cursorIdx, mode, startLine, searchList, drawMsg)
|
(app, buffer, cursorIdx, mode, startLine, searchList, drawMsg, bufferModifyTime)
|
||||||
end
|
end
|
||||||
|
|
||||||
fun moveToMatchingPair (app: app_type) =
|
fun moveToMatchingPair (app: app_type) =
|
||||||
@@ -122,6 +125,7 @@ struct
|
|||||||
, startLine
|
, startLine
|
||||||
, searchList
|
, searchList
|
||||||
, searchString
|
, searchString
|
||||||
|
, bufferModifyTime
|
||||||
, ...
|
, ...
|
||||||
} = app
|
} = app
|
||||||
|
|
||||||
@@ -157,6 +161,7 @@ struct
|
|||||||
, startLine
|
, startLine
|
||||||
, searchList
|
, searchList
|
||||||
, drawMsg
|
, drawMsg
|
||||||
|
, bufferModifyTime
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
@@ -188,13 +193,15 @@ struct
|
|||||||
, startLine
|
, startLine
|
||||||
, searchList
|
, searchList
|
||||||
, drawMsg
|
, drawMsg
|
||||||
|
, bufferModifyTime
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
fun firstNonSpaceChr (app: app_type) =
|
fun firstNonSpaceChr (app: app_type) =
|
||||||
let
|
let
|
||||||
val {buffer, cursorIdx, windowWidth, windowHeight, startLine, ...} = app
|
val {buffer, cursorIdx, windowWidth, windowHeight, startLine, searchList,
|
||||||
|
bufferModifyTime, ...} = app
|
||||||
|
|
||||||
(* move LineGap and buffer to start of line *)
|
(* move LineGap and buffer to start of line *)
|
||||||
val buffer = LineGap.goToIdx (cursorIdx, buffer)
|
val buffer = LineGap.goToIdx (cursorIdx, buffer)
|
||||||
@@ -204,13 +211,13 @@ struct
|
|||||||
val buffer = LineGap.goToIdx (cursorIdx, buffer)
|
val buffer = LineGap.goToIdx (cursorIdx, buffer)
|
||||||
val cursorIdx = Cursor.firstNonSpaceChr (buffer, cursorIdx)
|
val cursorIdx = Cursor.firstNonSpaceChr (buffer, cursorIdx)
|
||||||
in
|
in
|
||||||
Finish.buildTextAndClear (app, buffer, cursorIdx, #searchList app, [])
|
Finish.buildTextAndClear (app, buffer, cursorIdx, searchList, [], bufferModifyTime)
|
||||||
end
|
end
|
||||||
|
|
||||||
fun helpMoveToChr (app: app_type, buffer, cursorIdx, count, fMove, chr) =
|
fun helpMoveToChr (app: app_type, buffer, cursorIdx, count, fMove, chr) =
|
||||||
if count = 0 then
|
if count = 0 then
|
||||||
Finish.buildTextAndClearAfterChr
|
Finish.buildTextAndClearAfterChr
|
||||||
(app, buffer, cursorIdx, #searchList app, [])
|
(app, buffer, cursorIdx, #searchList app, [], #bufferModifyTime app)
|
||||||
else
|
else
|
||||||
let
|
let
|
||||||
(* move LineGap to cursorIdx, which is necessary for finding newCursorIdx *)
|
(* move LineGap to cursorIdx, which is necessary for finding newCursorIdx *)
|
||||||
@@ -228,25 +235,25 @@ struct
|
|||||||
|
|
||||||
fun moveToNextMatch (app: app_type, count) =
|
fun moveToNextMatch (app: app_type, count) =
|
||||||
let
|
let
|
||||||
val {cursorIdx, searchList, buffer, ...} = app
|
val {cursorIdx, searchList, buffer, bufferModifyTime, ...} = app
|
||||||
val newCursorIdx = SearchList.nextMatch (cursorIdx, searchList, count)
|
val newCursorIdx = SearchList.nextMatch (cursorIdx, searchList, count)
|
||||||
in
|
in
|
||||||
if newCursorIdx = ~1 then
|
if newCursorIdx = ~1 then
|
||||||
Finish.clearMode app
|
Finish.clearMode app
|
||||||
else
|
else
|
||||||
Finish.buildTextAndClearAfterChr
|
Finish.buildTextAndClearAfterChr
|
||||||
(app, buffer, newCursorIdx, searchList, [])
|
(app, buffer, newCursorIdx, searchList, [], bufferModifyTime)
|
||||||
end
|
end
|
||||||
|
|
||||||
fun moveToPrevMatch (app: app_type, count) =
|
fun moveToPrevMatch (app: app_type, count) =
|
||||||
let
|
let
|
||||||
val {cursorIdx, searchList, buffer, ...} = app
|
val {cursorIdx, searchList, buffer, bufferModifyTime, ...} = app
|
||||||
val newCursorIdx = SearchList.prevMatch (cursorIdx, searchList, count)
|
val newCursorIdx = SearchList.prevMatch (cursorIdx, searchList, count)
|
||||||
in
|
in
|
||||||
if newCursorIdx = ~1 then
|
if newCursorIdx = ~1 then
|
||||||
Finish.clearMode app
|
Finish.clearMode app
|
||||||
else
|
else
|
||||||
Finish.buildTextAndClearAfterChr
|
Finish.buildTextAndClearAfterChr
|
||||||
(app, buffer, newCursorIdx, searchList, [])
|
(app, buffer, newCursorIdx, searchList, [], bufferModifyTime)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -20,20 +20,12 @@ struct
|
|||||||
|
|
||||||
fun loop (app: AppType.app_type, inputMailbox, drawMailbox, searchMailbox) =
|
fun loop (app: AppType.app_type, inputMailbox, drawMailbox, searchMailbox) =
|
||||||
let
|
let
|
||||||
|
val time = Time.now ()
|
||||||
val inputMsg = Mailbox.recv inputMailbox
|
val inputMsg = Mailbox.recv inputMailbox
|
||||||
val () =
|
|
||||||
(* if a certain CHAR_EVENT is sent,
|
|
||||||
* we trigger an exception and log the command history.
|
|
||||||
* This is helpful for manually triggering logs when,
|
|
||||||
* for example, we encounter a bug and would like to see
|
|
||||||
* the history of events that caused it. *)
|
|
||||||
case inputMsg of
|
|
||||||
CHAR_EVENT #"~" => ExceptionLogger.log (Fail "")
|
|
||||||
| _ => ()
|
|
||||||
|
|
||||||
val () = ExceptionLogger.addCommand inputMsg
|
val () = ExceptionLogger.addCommand inputMsg
|
||||||
|
|
||||||
val app = AppUpdate.update (app, inputMsg)
|
val app = AppUpdate.update (app, inputMsg, time)
|
||||||
handle e => ExceptionLogger.log e
|
handle e => ExceptionLogger.log e
|
||||||
|
|
||||||
val () = sendMsgs (#msgs app, drawMailbox, searchMailbox)
|
val () = sendMsgs (#msgs app, drawMailbox, searchMailbox)
|
||||||
|
|||||||
@@ -17,16 +17,6 @@ fcore/app-type.sml
|
|||||||
fcore/app-with.sml
|
fcore/app-with.sml
|
||||||
|
|
||||||
fcore/text-constants.sml
|
fcore/text-constants.sml
|
||||||
ann
|
|
||||||
"allowVectorExps true"
|
|
||||||
in
|
|
||||||
fcore/rect.sml
|
|
||||||
fcore/text-builder.sml
|
|
||||||
fcore/cursor-dfa/make-dfa-loop.sml
|
|
||||||
fcore/cursor-dfa/vi-WORD-dfa.sml
|
|
||||||
fcore/cursor-dfa/vi-word-dfa.sml
|
|
||||||
fcore/cursor-dfa/vi-dlr-dfa.sml
|
|
||||||
end
|
|
||||||
fcore/cursor.sml
|
fcore/cursor.sml
|
||||||
fcore/text-window.sml
|
fcore/text-window.sml
|
||||||
|
|
||||||
@@ -34,18 +24,3 @@ fcore/finish.sml
|
|||||||
fcore/move.sml
|
fcore/move.sml
|
||||||
|
|
||||||
fcore/normal-mode/normal-move.sml
|
fcore/normal-mode/normal-move.sml
|
||||||
fcore/normal-mode/normal-delete.sml
|
|
||||||
fcore/normal-mode/normal-mode.sml
|
|
||||||
|
|
||||||
fcore/app-update.sml
|
|
||||||
|
|
||||||
(* TEST FILES *)
|
|
||||||
$(SML_LIB)/basis/mlton.mlb
|
|
||||||
|
|
||||||
shell/exception-logger.sml
|
|
||||||
|
|
||||||
test/Railroad/src/railroad.mlb
|
|
||||||
test/normal-move.sml
|
|
||||||
test/normal-delete.sml
|
|
||||||
test/regression.sml
|
|
||||||
test/test.sml
|
|
||||||
|
|||||||
Reference in New Issue
Block a user