Advertisement
Guest User

Untitled

a guest
Aug 31st, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. (defun seekablep (stream)
  2. (let ((pos (file-position stream)))
  3. (and pos
  4. (unwind-protect
  5. (file-position stream (if (zerop pos)
  6. (1+ pos)
  7. (1- pos)))
  8. (file-position stream pos)))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement