Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Functions/#Name-Value/#.fmfn
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* DEPENDENCIES: none
*
* HISTORY:
* MODIFIED on 2017-08-31 by Nick Lewis nilness@gmail.com to fix an
* issue where long sequences of text could be interpreted as numbers.
* MODIFIED on 2014-10-07 by Daniel Smith dansmith65@gmail.com to prevent
* from returning an EvaluationError.
* MODIFIED on 2014-06-06 by Jeremy Bante <http://scr.im/jbante> to fix an
Expand Down Expand Up @@ -63,7 +65,7 @@ Let ( [
~number = GetAsNumber ( value ) ;
~value =
Case (
value = "" or value = "?" or ~number = "?" ;
value = "" or value = "?" or ~number = "?" or number = "";
Quote ( value ) ;

~isValidDate
Expand Down Expand Up @@ -128,4 +130,4 @@ Let ( [
/* Else */
~result
)
)
)