comparison lisp/ielm.el @ 55104:60202911eed0

(inferior-emacs-lisp-mode): Fix docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 23 Apr 2004 21:33:38 +0000
parents 2683a7145ceb
children 06d6dda8a91c
comparison
equal deleted inserted replaced
55103:93f6ab2a0eb5 55104:60202911eed0
1 ;;; ielm.el --- interaction mode for Emacs Lisp 1 ;;; ielm.el --- interaction mode for Emacs Lisp
2 2
3 ;; Copyright (C) 1994, 2002, 2003 Free Software Foundation, Inc. 3 ;; Copyright (C) 1994, 2002, 2003, 2004 Free Software Foundation, Inc.
4 4
5 ;; Author: David Smith <maa036@lancaster.ac.uk> 5 ;; Author: David Smith <maa036@lancaster.ac.uk>
6 ;; Maintainer: FSF 6 ;; Maintainer: FSF
7 ;; Created: 25 Feb 1994 7 ;; Created: 25 Feb 1994
8 ;; Keywords: lisp 8 ;; Keywords: lisp
424 `*1', `*2' and `*3', yield the process buffer values. 424 `*1', `*2' and `*3', yield the process buffer values.
425 425
426 Expressions evaluated by IELM are not subject to `debug-on-quit' or 426 Expressions evaluated by IELM are not subject to `debug-on-quit' or
427 `debug-on-error'. 427 `debug-on-error'.
428 428
429 The behaviour of IELM may be customised with the following variables: 429 The behaviour of IELM may be customized with the following variables:
430 * To stop beeping on error, set `ielm-noisy' to nil 430 * To stop beeping on error, set `ielm-noisy' to nil.
431 * If you don't like the prompt, you can change it by setting `ielm-prompt'. 431 * If you don't like the prompt, you can change it by setting `ielm-prompt'.
432 * Set `ielm-dynamic-return' to nil for bindings like `lisp-interaction-mode' 432 * Set `ielm-dynamic-return' to nil for bindings like `lisp-interaction-mode'.
433 * Entry to this mode runs `comint-mode-hook' and `ielm-mode-hook' 433 * Entry to this mode runs `comint-mode-hook' and `ielm-mode-hook'
434 (in that order). 434 (in that order).
435 435
436 Customised bindings may be defined in `ielm-map', which currently contains: 436 Customized bindings may be defined in `ielm-map', which currently contains:
437 \\{ielm-map}" 437 \\{ielm-map}"
438 (interactive) 438 (interactive)
439 (comint-mode) 439 (comint-mode)
440 (setq comint-prompt-regexp (concat "^" (regexp-quote ielm-prompt))) 440 (setq comint-prompt-regexp (concat "^" (regexp-quote ielm-prompt)))
441 (make-local-variable 'paragraph-start) 441 (make-local-variable 'paragraph-start)