From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Kastrup Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Add prettify symbols to python-mode Date: Wed, 23 Sep 2015 19:58:18 +0200 Message-ID: <87k2rh81c5.fsf@fencepost.gnu.org> References: <1442777283-27514-1-git-send-email-mvoteiza@udel.edu> <20150921005306.GA29147@holos> <87h9mlwt6l.fsf@Rainer.invalid> <83bnctliay.fsf@gnu.org> <83oagtjemn.fsf@gnu.org> <87oagt84e7.fsf@fencepost.gnu.org> <83mvwdjc5v.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1443031124 9378 80.91.229.3 (23 Sep 2015 17:58:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 23 Sep 2015 17:58:44 +0000 (UTC) Cc: xfq.free@gmail.com, Stromeko@nexgo.de, emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Sep 23 19:58:38 2015 Return-path: Envelope-to: ged-emacs-devel@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 1ZeoJQ-0004IE-7b for ged-emacs-devel@m.gmane.org; Wed, 23 Sep 2015 19:58:36 +0200 Original-Received: from localhost ([::1]:49767 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZeoJP-0003qw-Pi for ged-emacs-devel@m.gmane.org; Wed, 23 Sep 2015 13:58:35 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56943) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZeoJD-0003pw-NT for emacs-devel@gnu.org; Wed, 23 Sep 2015 13:58:24 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZeoJC-0000kp-Nl for emacs-devel@gnu.org; Wed, 23 Sep 2015 13:58:23 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:36505) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZeoJA-0000jd-CQ; Wed, 23 Sep 2015 13:58:20 -0400 Original-Received: from localhost ([127.0.0.1]:50324 helo=lola) by fencepost.gnu.org with esmtp (Exim 4.82) (envelope-from ) id 1ZeoJ9-0004iZ-EJ; Wed, 23 Sep 2015 13:58:19 -0400 Original-Received: by lola (Postfix, from userid 1000) id C963EE0F08; Wed, 23 Sep 2015 19:58:18 +0200 (CEST) In-Reply-To: <83mvwdjc5v.fsf@gnu.org> (Eli Zaretskii's message of "Wed, 23 Sep 2015 20:09:00 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:190301 Archived-At: Eli Zaretskii writes: >> From: David Kastrup >> Date: Wed, 23 Sep 2015 18:52:16 +0200 >> Cc: Xue Fuqiao , Stromeko@nexgo.de, emacs-devel@gnu.org >> >> C may not be a complicated language but it offers no significant >> in-language features for integrating data structures and their >> manipulators. As a consequence, working with Elisp data in C does not >> resemble either working with C or with Lisp. > > We have a small set of macros that make this a non-issue. Lisp_Object x[2]; x[0] = a; x[1] = b; return Fplus (2, x); does not resemble either a+b or (+ a b). A non-issue is something else. -- David Kastrup