Variable: inferior-lisp-prompt

inferior-lisp-prompt is a customizable variable defined in inf-lisp.el.gz.

Value

"^[^> \n]*>+:? *"

Documentation

Regexp to recognize prompts in the Inferior Lisp mode.

Defaults to "^[^> \\n]*>+:? *", which works pretty good for Lucid, kcl, and franz. This variable is used to initialize comint-prompt-regexp in the Inferior Lisp buffer.

This variable is only used if the variable comint-use-prompt-regexp is non-nil.

More precise choices: Lucid Common Lisp: "^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *" franz: "^\\\\(->\\\\|<[0-9]*>:\\\\) *" kcl: "^>+ *"

Probably introduced at or before Emacs version 18.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defcustom inferior-lisp-prompt "^[^> \n]*>+:? *"
  "Regexp to recognize prompts in the Inferior Lisp mode.
Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl,
and franz.  This variable is used to initialize `comint-prompt-regexp' in the
Inferior Lisp buffer.

This variable is only used if the variable
`comint-use-prompt-regexp' is non-nil.

More precise choices:
Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\"
franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\"
kcl: \"^>+ *\""
  :type 'regexp)