Fixed symbol definition is void when completing nicks

When hiting TAB on a partial nickname, this error used to appear: "mapcar: Symbol’s
function definition is void: fetch-time".
This commit is contained in:
cnngimenez 2021-03-26 13:57:14 -03:00 committed by wgreenhouse
parent 8e000430ee
commit aab9a31d4a
1 changed files with 1 additions and 1 deletions

View File

@ -11551,7 +11551,7 @@ Optional argument GROUP to look."
(car nt1)
(car nt2))
(> t1 t2)))))
(mapcar 'car (sort (mapcar 'fetch-time nicks)
(mapcar 'car (sort (mapcar #'fetch-time nicks)
'cmp)))))
#+END_SRC