branch: elpa/inf-clojure
commit e93cc30ab5f82bd65f1bf0ca859d335cafe4570f
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Fix truncated autoload cookie on inf-clojure-connect
    
    The autoload cookie was `;;;###autol` instead of `;;;###autoload`,
    so `inf-clojure-connect` was never autoloaded.
---
 inf-clojure.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inf-clojure.el b/inf-clojure.el
index 37f91edaed..35c33f925e 100644
--- a/inf-clojure.el
+++ b/inf-clojure.el
@@ -878,7 +878,7 @@ process buffer for a list of commands.)"
       (pop-to-buffer repl-buffer-name))
     repl-buffer-name))
 
-;;;###autol
+;;;###autoload
 (defun inf-clojure-connect (host port &optional suppress-message)
   "Connect to a running socket REPL server via `inf-clojure'.
 HOST is the host the process is running on, PORT is where it's

Reply via email to