# HG changeset patch # User John Paul Wallington # Date 1093459222 0 # Node ID 80dba6d2451b679465e708ae735e53a6866036d5 # Parent 817069024be57d69c58616e5acee57e7fb3ff561 (ielm-tab, ielm-complete-symbol): Doc fix. (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'. diff -r 817069024be5 -r 80dba6d2451b lisp/ielm.el --- a/lisp/ielm.el Wed Aug 25 06:09:12 2004 +0000 +++ b/lisp/ielm.el Wed Aug 25 18:40:22 2004 +0000 @@ -198,7 +198,7 @@ ;;; Completion stuff (defun ielm-tab nil - "Possibly indent the current line as lisp code." + "Possibly indent the current line as Lisp code." (interactive) (if (or (eq (preceding-char) ?\n) (eq (char-syntax (preceding-char)) ? )) @@ -207,7 +207,7 @@ t))) (defun ielm-complete-symbol nil - "Complete the lisp symbol before point." + "Complete the Lisp symbol before point." ;; A wrapper for lisp-complete symbol that returns non-nil if ;; completion has occurred (let* ((btick (buffer-modified-tick)) @@ -528,7 +528,7 @@ (condition-case nil (start-process "ielm" (current-buffer) "hexl") (file-error (start-process "ielm" (current-buffer) "cat"))) - (process-kill-without-query (ielm-process)) + (set-process-query-on-exit-flag (ielm-process) nil) (goto-char (point-max)) ;; Lisp output can include raw characters that confuse comint's