emacsorphanage / org-page

[INACTIVE] A static site generator based on Emacs and org mode.
673 stars 99 forks source link

replace let* with let when possible #46

Closed xiaohanyu closed 11 years ago

xiaohanyu commented 11 years ago

Using let instead let* when possible is a good coding style, at least in Common Lisp. Actually, let may have better performance since let can do parallel assignment, while let* can only do sequential assignment.

xiaohanyu commented 11 years ago

Sorry, I'm not familiar of how to connect a pull quest to an existing issue. This pull request is related to #45 .