diff options
| author | Lukas Fürmetz <fuermetz@mailbox.org> | 2019-08-08 19:01:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-08 19:01:19 +0200 |
| commit | 2c5d06b789f5ed06eeda92965509f8af46f6127c (patch) | |
| tree | 6c26fc93c7e567b3dda60b5fe1dde10007a1cfd7 | |
| parent | aafb9da5b978bc945513dd181f0ccbe4670d232c (diff) | |
| parent | 58506483cbef41d5c5fd0a73a23779c5c3be5ca9 (diff) | |
Merge pull request #123 from akermu/emacs_module_support
Verify and clarify that vterm needs module support
| -rw-r--r-- | README.md | 7 | ||||
| -rw-r--r-- | vterm.el | 3 |
2 files changed, 8 insertions, 2 deletions
@@ -20,8 +20,11 @@ git clone https://github.com/akermu/emacs-libvterm.git Before installing emacs-libvterm, you need to make sure you have installed - 1. cmake (>=3.11) - 2. libtool-bin (related issues: [#66](https://github.com/akermu/emacs-libvterm/issues/66) [#85](https://github.com/akermu/emacs-libvterm/issues/85#issuecomment-491845136)) + 1. Emacs with [module + support](https://www.gnu.org/software/emacs/manual/html_node/elisp/Dynamic-Modules.html). + You can check that, by verifying that `module-file-suffix` is not `nil`. + 2. cmake (>=3.11) + 3. libtool-bin (related issues: [#66](https://github.com/akermu/emacs-libvterm/issues/66) [#85](https://github.com/akermu/emacs-libvterm/issues/85#issuecomment-491845136)) Run the build: @@ -42,6 +42,9 @@ ;;; Code: +(unless module-file-suffix + (error "VTerm needs module support. Please compile your Emacs with the --with-modules option!")) + (require 'term) (defvar vterm-install-buffer-name " *Install vterm" |
