]> code.delx.au - gnu-emacs-elpa/commitdiff
ediprolog: Don't autoload variables
authorDmitry Gutov <dgutov@yandex.ru>
Wed, 23 Sep 2015 15:56:18 +0000 (18:56 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Wed, 23 Sep 2015 15:56:18 +0000 (18:56 +0300)
packages/ediprolog/ediprolog.el

index 27cefcdf9b7e6b1c744c950796ffcbcc82f1c7b4..681805278f98046d1221355c8bd2bc38b551746f 100644 (file)
   :group 'languages
   :group 'processes)
 
-;;;###autoload
 (defcustom ediprolog-program
   (or (executable-find "swipl") (executable-find "pl") "swipl")
   "Program name of the Prolog executable."
   :group 'ediprolog
   :type 'string)
 
-;;;###autoload
 (defcustom ediprolog-program-switches nil
   "List of switches passed to the Prolog process. Example:
 '(\"-G128M\" \"-O\")"
   :group 'ediprolog
   :type '(repeat string))
 
-;;;###autoload
 (defcustom ediprolog-prefix "%@ "
   "String to prepend when inserting output from the Prolog
 process into the buffer."