projects
/
embrace.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f201a1d
)
don't yield nil items from the container
author
Tilman Sauerbeck
<tilman@code-monkey.de>
Mon, 22 May 2006 17:48:21 +0000
(19:48 +0200)
committer
Tilman Sauerbeck
<tilman@code-monkey.de>
Mon, 22 May 2006 17:48:21 +0000
(19:48 +0200)
bin/embrace
patch
|
blob
|
history
diff --git
a/bin/embrace
b/bin/embrace
index b586afe5b4c12e206a7f2c092e05fee384355456..8feccd3aff578921273392d1b24a95de89dbe492 100755
(executable)
--- a/
bin/embrace
+++ b/
bin/embrace
@@
-193,7
+193,7
@@
module Embrace
end
def each
- @icons.each { |i| yield i }
+ @icons.
compact.
each { |i| yield i }
end
def <<(i)