Appease the byte-compiler

This commit is contained in:
Henrik Lissner 2018-07-30 12:10:11 +02:00
parent c935f3e4da
commit cbc59f9333
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
9 changed files with 14 additions and 13 deletions

View file

@ -1,7 +1,7 @@
;;; lang/haskell/autoload.el -*- lexical-binding: t; -*-
;;;###autoload
(defun +haskell-repl-buffer ()
(defun +haskell-repl-buffer (arg)
"Returns the appropriate Haskell REPL buffer."
(if (featurep! +intero)
(intero-repl-buffer arg)
@ -11,5 +11,5 @@
(defun +haskell/repl (&optional arg)
"Opens a Haskell REPL."
(interactive "P")
(display-buffer (+haskell-repl-buffer)))
(display-buffer (+haskell-repl-buffer arg)))