From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nicolas Petton Newsgroups: gmane.emacs.help Subject: Modifying literal lists in Emacs lisp? Date: Fri, 13 Jun 2014 12:14:14 +0200 Message-ID: <87y4x1jevd.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1402673942 18339 80.91.229.3 (13 Jun 2014 15:39:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 13 Jun 2014 15:39:02 +0000 (UTC) To: help-gnu-emacs Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jun 13 17:38:54 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WvTZ2-0001QL-6u for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Jun 2014 17:38:48 +0200 Original-Received: from localhost ([::1]:59737 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvTZ1-0001br-Rn for geh-help-gnu-emacs@m.gmane.org; Fri, 13 Jun 2014 11:38:47 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:51414) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvOUx-0005xi-6X for help-gnu-emacs@gnu.org; Fri, 13 Jun 2014 06:14:24 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WvOUo-0002Nm-5b for help-gnu-emacs@gnu.org; Fri, 13 Jun 2014 06:14:15 -0400 Original-Received: from mail-wi0-x22b.google.com ([2a00:1450:400c:c05::22b]:58213) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvOUn-0002NW-VB for help-gnu-emacs@gnu.org; Fri, 13 Jun 2014 06:14:06 -0400 Original-Received: by mail-wi0-f171.google.com with SMTP id n15so591181wiw.4 for ; Fri, 13 Jun 2014 03:14:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=user-agent:from:to:subject:date:message-id:mime-version :content-type; bh=TCavPjd6uo5eYxROkfG7cqxY2VeUocRQKmcJhNwMGeI=; b=Bdo9PFgki5sQBsriINSLycUBmtB7OwzKt1qI5v9Qg22/dAmO+zEFRN7yuY2on2+w3J fRvYmtKdQO0flka/DI1QVAgH53gXGKALQ24EnIT1nE0Po/V+jRzE+oHuIXzDUkW4i7uK OF4b5KrqfylgfvsA/+6zfugIKjfZFNaE54aeSEqv/jmtcYaQ7Bfg0RPDdVVjgi+99+kj ylBTYyf3178wojIPqnUMPX1/YEIh8rp+W3p0L4mn0lQnbDPm38XBaeAcMEwcBQ1bD0hd 5vz+XNM1b49rkB4DP1iN877VXYaLt7KHyzsux0bYuh+Risx2jV+0SLMaS8ssTQZuloH6 VU9g== X-Received: by 10.194.71.81 with SMTP id s17mr3021690wju.10.1402654444577; Fri, 13 Jun 2014 03:14:04 -0700 (PDT) Original-Received: from lingonberry ([193.51.236.39]) by mx.google.com with ESMTPSA id gi7sm1624169wib.1.2014.06.13.03.14.03 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 13 Jun 2014 03:14:04 -0700 (PDT) User-agent: mu4e 0.9.9.6pre3; emacs 24.3.1 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::22b X-Mailman-Approved-At: Fri, 13 Jun 2014 11:38:36 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:98212 Archived-At: Hi, In Common Lisp one should not modify literal lists because of possible shared conses. I was wondering if it is the same in Emacs Lisp, but I couldn't find anything in the documentattion. Cheers, Nico