tmalsburg / guess-language.el

Emacs minor mode that detects the language you're typing in. Automatically switches spell checker. Supports multiple languages per document.
115 stars 14 forks source link

Fix package #1

Closed syohex closed 7 years ago

syohex commented 7 years ago
tmalsburg commented 7 years ago

Thank you, @syohex. One question, why use cl-reduce instead of just reduce which is a synonym?

syohex commented 7 years ago

reduce is an alias of cl-reduce and Emacs warns to using cl.el functions at byte-compiling time. In emacs lisp coding conventions, we should use cl-lib functions/macros instead of cl.el.