diff options
author | John Paul Wallington <jpw@pobox.com> | 2004-08-25 18:40:22 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2004-08-25 18:40:22 +0000 |
commit | e5927b52aa1a746cbf655a2973259159d9241772 (patch) | |
tree | 7702c3bae1112d2a694582f876503965f36f5a37 /lisp/ielm.el | |
parent | 5e4c34ce89498c4a6a84a73a65065b5d49dec9b5 (diff) | |
download | emacs-e5927b52aa1a746cbf655a2973259159d9241772.tar.gz |
(ielm-tab, ielm-complete-symbol): Doc fix.
(inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
Diffstat (limited to 'lisp/ielm.el')
-rw-r--r-- | lisp/ielm.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ielm.el b/lisp/ielm.el index 944e2453cb9..96969bfc878 100644 --- a/lisp/ielm.el +++ b/lisp/ielm.el @@ -198,7 +198,7 @@ This variable is buffer-local.") ;;; 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 @@ This variable is buffer-local.") 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 @@ Customized bindings may be defined in `ielm-map', which currently contains: (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 |