Skip to content

Commit

Permalink
Slight modification to previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sjbach committed Aug 1, 2010
1 parent d1a5427 commit 08951d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lusty-explorer.el
Original file line number Diff line number Diff line change
Expand Up @@ -398,9 +398,9 @@ much as possible."
(macrolet ((ephemeral-p (name)
`(eq (string-to-char ,name) ?\ )))
(loop for buffer in buffers
for name = (copy-sequence (buffer-name buffer))
for name = (buffer-name buffer)
unless (ephemeral-p name)
collect name)))
collect (copy-sequence name))))

;; Written kind-of silly for performance.
(defun lusty-filter-files (file-portion files)
Expand Down

0 comments on commit 08951d5

Please sign in to comment.