diff options
author | Colin Okay <okay@toyful.space> | 2022-02-28 09:41:07 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-02-28 09:41:07 -0600 |
commit | 3d6974fb3fb3fdf49ce9e97eef71f23615306d49 (patch) | |
tree | 4c3c937b805058282f1a882856df1ea0939ad32a /src/main.lisp | |
parent | 808b68d1081b5f1415325cc2848075d4c23ae795 (diff) |
fetching newest oneliners puts newest first
Diffstat (limited to 'src/main.lisp')
-rw-r--r-- | src/main.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.lisp b/src/main.lisp index 4a0c2d1..76d0df9 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -508,7 +508,7 @@ started, this will allow remote live debugging of the system. (defun newest-oneliners (&optional limit) (bt:with-lock-held (*newest-queue-lock*) - (qb-look *newest-queue*))) + (qb-look *newest-queue* :limit limit :reversep t))) (defun flagged-oneliners (&optional limit) (loop |