aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/lisp-mode.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index adc16ef0833..3cf349b3b2b 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -1,6 +1,6 @@
1;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands. 1;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands.
2 2
3;; Copyright (C) 1985, 1986, 1999, 2000 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1986, 1999, 2000, 2001 Free Software Foundation, Inc.
4 4
5;; Maintainer: FSF 5;; Maintainer: FSF
6;; Keywords: lisp, languages 6;; Keywords: lisp, languages
@@ -294,6 +294,8 @@ All commands in `lisp-mode-shared-map' are inherited by this map.")
294 "Major mode for typing and evaluating Lisp forms. 294 "Major mode for typing and evaluating Lisp forms.
295Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression 295Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression
296before point, and prints its value into the buffer, advancing point. 296before point, and prints its value into the buffer, advancing point.
297Note that printing is controled by `eval-expression-print-length'
298and `eval-expression-print-level'.
297 299
298Commands: 300Commands:
299Delete converts tabs to spaces as it moves back. 301Delete converts tabs to spaces as it moves back.