Yes, it refers to Lee Mac. With grread, you can't actually snap your cursor to any of the OSMODEs. Which is why Lee created that function to enhance grread, and I create GrPolar in that TracePoly link.
I mean you can always do:
(defun c:test ( / lst rtn)
(setq lst (entlast) rtn (list lst))
;; do your thing here
(while (setq lst (entnext lst))
(setq rtn (cons lst rtn))
)
)