rejeep / f.el

Modern API for working with files and directories in Emacs
GNU General Public License v3.0
680 stars 68 forks source link

No longer use -map for side-effects #127

Closed tarsius closed 1 year ago

tarsius commented 1 year ago

-map is a wrapper around mapcar, not mapc. It also explicitly sets important-return-value to t, instructing the compiler to warn if the value is unused. Using mapc also avoids pointless consing.

Phundrak commented 1 year ago

Thank you for your PR!