diff options
author | Glenn Morris <rgm@gnu.org> | 2012-09-29 11:20:12 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-09-29 11:20:12 -0700 |
commit | 0e3e4156242bfe3104b8f507a07c38d966d110eb (patch) | |
tree | ecf1822046bce3ca3b8c1fc04147a8fc7e7911c6 /lisp/progmodes/inf-lisp.el | |
parent | de82e29b3fe963e92ed7f60bc52009e3ef923a29 (diff) | |
download | emacs-0e3e4156242bfe3104b8f507a07c38d966d110eb.tar.gz |
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.
Diffstat (limited to 'lisp/progmodes/inf-lisp.el')
-rw-r--r-- | lisp/progmodes/inf-lisp.el | 5 |
1 files changed, 0 insertions, 5 deletions
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.") |