From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: C-j in Lisp interaction mode. Date: Thu, 7 Aug 2003 12:08:21 -0500 (CDT) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200308071708.h77H8LR15118@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org X-Trace: main.gmane.org 1060277861 13606 80.91.224.253 (7 Aug 2003 17:37:41 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 7 Aug 2003 17:37:41 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu Aug 07 19:38:05 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19koiD-0006jV-00 for ; Thu, 07 Aug 2003 19:38:05 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19konk-0003VO-00 for ; Thu, 07 Aug 2003 19:43:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19kogj-0005JS-Cf for emacs-devel@quimby.gnus.org; Thu, 07 Aug 2003 13:36:33 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19koK8-0006Tw-GY for emacs-devel@gnu.org; Thu, 07 Aug 2003 13:13:12 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19koJB-0005Ng-G1 for emacs-devel@gnu.org; Thu, 07 Aug 2003 13:12:44 -0400 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.20) id 19koH0-0003lk-HG for emacs-devel@gnu.org; Thu, 07 Aug 2003 13:09:58 -0400 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.9/8.12.9) with ESMTP id h77H9veQ001625 for ; Thu, 7 Aug 2003 12:09:57 -0500 (CDT) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.6+Sun/8.11.6) id h77H8LR15118; Thu, 7 Aug 2003 12:08:21 -0500 (CDT) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: emacs-devel@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:15834 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15834 C-j in Lisp interaction mode overrides `print-length' and `print-level' using `eval-expression-print-length' and `eval-expression-print-level'. The purpose of the latter two variables would seem to avoid printing huge expressions in the echo area. But I do not see any reason to use them in `eval-print-last-sexp', bound to C-j in Lisp interaction mode. I would propose to change `eval-print-last-sexp' to just use `print-length' and `print-level'. Also, `eval-expression-print-length' and `eval-expression-print-level' do not seem to be documented in the Elisp manual, which makes their use very confusing to beginning Elisp users. Sincerely, Luc.