]> git.eshelyaron.com Git - sweep.git/commitdiff
; Add missing ':type' for 'sweeprolog-top-level-use-pty'
authorEshel Yaron <me@eshelyaron.com>
Wed, 27 Sep 2023 17:02:52 +0000 (19:02 +0200)
committerEshel Yaron <me@eshelyaron.com>
Wed, 27 Sep 2023 17:02:52 +0000 (19:02 +0200)
sweeprolog.el

index d5e39c027fc28dd2544467a4c540f679ccac4d5b..4370252d0893264adf8d83c6a567148028364e44 100644 (file)
@@ -439,6 +439,15 @@ pack completion candidates."
   :package-version '((sweeprolog "0.22.2"))
   :type 'natnum)
 
+(defcustom sweeprolog-top-level-use-pty
+  (not (memq system-type '(ms-dos windows-nt)))
+  "Whether to communicate with top-levels using pseudo-terminal (\"pty\").
+
+By default, this is t on systems where Emacs can use a pty."
+  :package-version '((sweeprolog "0.25.0"))
+  :type 'boolean)
+
+
 ;;;; Keymaps
 
 (defvar-keymap sweeprolog-mode-map
@@ -3203,12 +3212,6 @@ function with PROC and MSG."
                           #'sweeprolog-top-level-sentinel)
     (add-hook 'kill-buffer-hook #'comint-write-input-ring nil t)))
 
-(defcustom sweeprolog-top-level-use-pty
-  (not (memq system-type '(ms-dos windows-nt)))
-  "Whether to communicate with top-levels using pseudo-terminal (\"pty\").
-
-By default, this is t on systems where Emacs can use a pty.")
-
 (defun sweeprolog-top-level-buffer (&optional name)
   "Return a Prolog top-level buffer named NAME.