From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: kaz@ashi.footprints.net (Kaz Kylheku) Newsgroups: gmane.emacs.help Subject: Re: Need general info on common lisp, opinions sought Date: 3 Oct 2002 11:36:38 -0700 Organization: http://groups.google.com/ Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: <9e8ebeb2.0210030436.7d87eee@posting.google.com> NNTP-Posting-Host: localhost.gmane.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1033707187 16789 127.0.0.1 (4 Oct 2002 04:53:07 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 4 Oct 2002 04:53:07 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17xKSW-0004MU-00 for ; Fri, 04 Oct 2002 06:53:05 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17xJur-0005gf-00; Fri, 04 Oct 2002 00:18:17 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail Original-Newsgroups: gnu.emacs.help,gnu.utils.help,comp.lang.lisp Original-Lines: 23 Original-NNTP-Posting-Host: 24.76.25.162 Original-X-Trace: posting.google.com 1033670198 5256 127.0.0.1 (3 Oct 2002 18:36:38 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: 3 Oct 2002 18:36:38 GMT Original-Xref: shelby.stanford.edu gnu.emacs.help:105680 gnu.utils.help:4074 comp.lang.lisp:95403 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:2209 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:2209 gnuist007@hotmail.com (gnuist) wrote in message news:<9e8ebeb2.0210030436.7d87eee@posting.google.com>... > Is it good to have the following line in .emacs file? > (require 'cl) > Is it going to cause any tradeoff or only pure additions? > > How is common lisp different from emacs lisp? Emacs Lisp is a hacked down version of a dynamically scoped Lisp dialect that is obsolete by several decades. > Where is the documentation on linux system? > Is it more than it or less than emacs lisp? > Which should I use and why? I need info on people's taste on this subject. Common Lisp is an ANSI standard programming language with many quality implementations, both free and proprietary. Many Lisp implementations compile to native machine code, can produce stand-alone executables, support multithreading, provide access to the underlying platform. Emacs Lisp is a proramming language implementation designed to create an extended environment around a text editor. Take a look at what task you have in mind, and choose accordingly.