From: Glenn Morris Date: Sat, 29 Sep 2012 18:20:12 +0000 (-0700) Subject: Do not autoload defcustoms in inf-lisp.el X-Git-Tag: emacs-24.2.90~244^2~36 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0e3e4156242bfe3104b8f507a07c38d966d110eb;p=emacs.git Do not autoload defcustoms in inf-lisp.el * lisp/progmodes/inf-lisp.el (inferior-lisp-filter-regexp) (inferior-lisp-program, inferior-lisp-load-command) (inferior-lisp-prompt, inferior-lisp-mode-hook): Do not autoload defcustoms. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4e61d02da9e..d6e7b498f4e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,10 @@ 2012-09-29 Glenn Morris + * progmodes/inf-lisp.el (inferior-lisp-filter-regexp) + (inferior-lisp-program, inferior-lisp-load-command) + (inferior-lisp-prompt, inferior-lisp-mode-hook): + Do not autoload defcustoms. + * hippie-exp.el (hippie-expand-try-functions-list) (hippie-expand-verbose, hippie-expand-dabbrev-skip-space) (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction) diff --git a/lisp/progmodes/inf-lisp.el b/lisp/progmodes/inf-lisp.el index 401970b2ce8..cccda962082 100644 --- a/lisp/progmodes/inf-lisp.el +++ b/lisp/progmodes/inf-lisp.el @@ -69,7 +69,6 @@ :group 'lisp :version "22.1") -;;;###autoload (defcustom inferior-lisp-filter-regexp (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") "What not to save on inferior Lisp's input history. @@ -137,13 +136,11 @@ mode. Default is whitespace followed by 0 or 1 single-letter colon-keyword (define-key inferior-lisp-mode-map "\C-cv" 'lisp-show-variable-documentation)) -;;;###autoload (defcustom inferior-lisp-program (purecopy "lisp") "Program name for invoking an inferior Lisp in Inferior Lisp mode." :type 'string :group 'inferior-lisp) -;;;###autoload (defcustom inferior-lisp-load-command (purecopy "(load \"%s\")\n") "Format-string for building a Lisp expression to load a file. This format string should use `%s' to substitute a file name @@ -155,7 +152,6 @@ but it works only in Common Lisp." :type 'string :group 'inferior-lisp) -;;;###autoload (defcustom inferior-lisp-prompt (purecopy "^[^> \n]*>+:? *") "Regexp to recognize prompts in the Inferior Lisp mode. Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl, @@ -207,7 +203,6 @@ one process, this does the right thing. If you run multiple processes, you can change `inferior-lisp-buffer' to another process buffer with \\[set-variable].") -;;;###autoload (defvar inferior-lisp-mode-hook '() "Hook for customizing Inferior Lisp mode.")