# HG changeset patch # User Luc Teirlinck # Date 1114557380 0 # Node ID c157250db02c2abfdc41bc07e0ee22354ec67d13 # Parent cff214e628c23244040ecffcf292c286a289d22a (shell-prompt-pattern): Doc fix. (shell-mode): Set paragraph-separate buffer locally to "\\'". diff -r cff214e628c2 -r c157250db02c lisp/shell.el --- a/lisp/shell.el Tue Apr 26 23:15:08 2005 +0000 +++ b/lisp/shell.el Tue Apr 26 23:16:20 2005 +0000 @@ -136,8 +136,9 @@ This variable is used to initialise `comint-prompt-regexp' in the shell buffer. -This variable is only used if the variable -`comint-use-prompt-regexp-instead-of-fields' is non-nil. +If `comint-use-prompt-regexp' is nil, then this variable is only used +to determine paragraph boundaries. See Info node `Shell Prompts' for +how Shell mode treats paragraphs. The pattern should probably not match more than one line. If it does, Shell mode may become confused trying to distinguish prompt from input @@ -422,6 +423,7 @@ (setq comint-file-name-chars shell-file-name-chars) (setq comint-file-name-quote-list shell-file-name-quote-list) (setq comint-dynamic-complete-functions shell-dynamic-complete-functions) + (set (make-local-variable 'paragraph-separate) "\\'") (make-local-variable 'paragraph-start) (setq paragraph-start comint-prompt-regexp) (make-local-variable 'font-lock-defaults)