emacsorphanage / org-page

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

Use cl-lib functions instead of cl.el #170

Closed syohex closed 8 years ago

syohex commented 8 years ago

And load cl-lib and add cl-lib to dependency list.

sillykelvin commented 8 years ago

Thanks for the PR, but what is the difference between them, e.g. cl-remove-if vs remove-if?

syohex commented 8 years ago

No differences. remove-if is an alias of cl-remove-if since Emacs 24.3. Using cl.el functions(without cl- prefix functions) causes byte-compile warning.

sillykelvin commented 8 years ago

OK, got that, thanks for the explanation!