From bf46b1203b289199e16d4c88cbe4627942acf77f Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 21 Jan 2021 22:27:20 -0300 Subject: remembering: Remove FIXME marker As long as the output of sort is stable, it doesn't matter what the internal algorithm is, since it will produce the same results. --- remembering | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remembering b/remembering index 9a1716f..2df0e93 100755 --- a/remembering +++ b/remembering @@ -47,7 +47,7 @@ cat | sort > "$SORTED_STDIN" cmp() { BEFORE="$(printf '%s\n%s\n' "$1" "$2")" - AFTER="$(echo "$BEFORE" | sort)" # FIXME: is this a lexicographical sort? + AFTER="$(echo "$BEFORE" | sort)" if [ "$BEFORE" = "$AFTER" ]; then return 0 else -- cgit v1.2.3