This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # I wrapped the code constructed in | |
| # | |
| # http://hacks-galore.org/aleix/blog/archives/2013/01/08/install-emacs-packages-from-command-line | |
| # | |
| # in a single bash script, so I would a single code snippet. | |
| # | |
| # Packages to be installed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <utility> | |
| #include <type_traits> | |
| namespace _tag_invoke { | |
| void tag_invoke(); | |
| struct _fn { | |
| template <typename CPO, typename... Args> | |
| constexpr auto operator()(CPO cpo, Args&&... args) const | |
| noexcept(noexcept(tag_invoke((CPO &&) cpo, (Args &&) args...))) |