]> git.eshelyaron.com Git - emacs.git/commitdiff
(inferior-emacs-lisp-mode): Set paragraph-separate buffer locally to
authorLuc Teirlinck <teirllm@auburn.edu>
Tue, 26 Apr 2005 23:26:20 +0000 (23:26 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Tue, 26 Apr 2005 23:26:20 +0000 (23:26 +0000)
"\\'".  Replace obsolete `comint-use-prompt-regexp-instead-of-fields'
with `comint-use-prompt-regexp'.

lisp/ChangeLog
lisp/ielm.el

index 959961d5844183bfcb4808e05d84270ae418baec..1f5290a749d405c33d49be9f96131a87ecb3551c 100644 (file)
@@ -1,3 +1,32 @@
+2005-04-26  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * shell.el (shell-prompt-pattern): Doc fix.
+       (shell-mode): Set paragraph-separate buffer locally to "\\'".
+
+       * comint.el (comint-prompt-regexp, comint-get-old-input)
+       (comint-use-prompt-regexp)
+       (comint-use-prompt-regexp-instead-of-fields)
+       (comint-replace-by-expanded-history, comint-send-input)
+       (comint-output-filter, comint-get-old-input-default)
+       (comint-line-beginning-position, comint-bol, comint-show-output)
+       (comint-backward-matching-input, comint-forward-matching-input)
+       (comint-next-prompt, comint-previous-prompt): Rename
+       `comint-use-prompt-regexp-instead-of-fields' to
+       `comint-use-prompt-regexp'.  Keep old name as alias and declare
+       obsolete.
+       (comint-use-prompt-regexp): Shorten first line of doc string.
+
+       * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
+       Set paragraph-separate buffer locally to "\\'".
+
+       * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
+       Adapt to above name change.
+
+       * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
+       (smbclient-prompt-regexp): Ditto.
+
+       * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
+
 2005-04-27  Nick Roberts  <nickrob@snap.net.nz>
 
        * progmodes/gdb-ui.el (gdb-location-alist): Rename from
index 5ef6ff1e1eb0084f33a013c7d2df1c1f5fd3f1e8..65654ca2c7a02ec4e4871eec58ab4e2d260ba815 100644 (file)
@@ -482,6 +482,7 @@ Customized bindings may be defined in `ielm-map', which currently contains:
   (interactive)
   (comint-mode)
   (setq comint-prompt-regexp (concat "^" (regexp-quote ielm-prompt)))
+  (set (make-local-variable 'paragraph-separate) "\\'")
   (make-local-variable 'paragraph-start)
   (setq paragraph-start comint-prompt-regexp)
   (setq comint-input-sender 'ielm-input-sender)
@@ -538,7 +539,7 @@ Customized bindings may be defined in `ielm-map', which currently contains:
     ;; Add a silly header
     (insert ielm-header)
     (ielm-set-pm (point-max))
-    (unless comint-use-prompt-regexp-instead-of-fields
+    (unless comint-use-prompt-regexp
       (let ((inhibit-read-only t))
         (add-text-properties
          (point-min) (point-max)