From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Yi DAI Newsgroups: gmane.lisp.guile.user Subject: A minor name improvement suggestion to Guile API Date: Wed, 16 Dec 2009 21:14:45 +0800 Message-ID: <7aee91500912160514v69c10c6ekf482bd8db88f324d@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=000e0cd75f96945ea9047ad84baf X-Trace: ger.gmane.org 1260969348 22675 80.91.229.12 (16 Dec 2009 13:15:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 16 Dec 2009 13:15:48 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Wed Dec 16 14:15:41 2009 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NKtjB-0007WM-1p for guile-user@m.gmane.org; Wed, 16 Dec 2009 14:15:41 +0100 Original-Received: from localhost ([127.0.0.1]:35390 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NKtj9-0004Dq-F7 for guile-user@m.gmane.org; Wed, 16 Dec 2009 08:15:40 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NKtiq-00047f-7O for guile-user@gnu.org; Wed, 16 Dec 2009 08:15:20 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NKtij-00045l-5q for guile-user@gnu.org; Wed, 16 Dec 2009 08:15:17 -0500 Original-Received: from [199.232.76.173] (port=60652 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NKtif-00044z-Mz for guile-user@gnu.org; Wed, 16 Dec 2009 08:15:10 -0500 Original-Received: from mail-yw0-f202.google.com ([209.85.211.202]:46715) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NKtif-0000TJ-8d for guile-user@gnu.org; Wed, 16 Dec 2009 08:15:09 -0500 Original-Received: by ywh40 with SMTP id 40so995588ywh.26 for ; Wed, 16 Dec 2009 05:15:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=iv6FCrKXHS2WanTTEdsIqXR2ipZ3PjdMvkxir+EOtmI=; b=wZpbIDL68AYL0RUqh1PMGc8QpRYZBVFBUy+EFw//93bySfu9LUU9YHe5y2dRJN0cqy H4p6nDSRJAfw3d4wzYNemdjQ35/VZyISbvT//G7jVTKNEkuEeB2p9qfYxm2X0JZDJL2m uOAAZirQPc4e4RGDLfyHPt3bpaBtOah1zwTg8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=dVZNrkMr2FdSjOcW4HYUh2P4vWhi6U8zrrvmZeJEmd28oQsdrwx0w1Gtd+v6OSHWYy 07DTJxNP+Af63ck1li8qjFDRoF/lErt+988I9T/+m7fUmxXTsisQe+SWvobjG1N+HTzY /AKMw1ce6jbKF6GnPfuNQgLZaVhGpt4jzuXEk= Original-Received: by 10.150.27.30 with SMTP id a30mr1581322yba.201.1260969306381; Wed, 16 Dec 2009 05:15:06 -0800 (PST) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:7538 Archived-At: --000e0cd75f96945ea9047ad84baf Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi, all, I read the following in "5.1 Overview of the Guile API" of the reference manual. - Replace <=3D (less than or equal) with _leq. - Replace >=3D (greater than or equal) with _geq. - Replace < (less than) with _less. - Replace > (greater than) with _gr. I'd like to suggest the following name convention which complies to names commonly found in assembly languages. - Replace < (less than) with *_lt*. - Replace > (greater than) with *_gt*. Should I send this to the devel-mailing list? --=20 DAI Yi (=E4=BB=A3 =E6=AF=85) --000e0cd75f96945ea9047ad84baf Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Hi, all, I read the following in "5.1 Overview of the Guile API&q= uot; of the reference manual.
  • Replace <=3D (less than = or equal) with _leq.
  • Replace >=3D (greater than or equal) with _= geq.
  • Replace < (less than) with _less.
  • Replace > (greater than= ) with _gr.
I'd like to suggest the following name = convention which complies to names commonly found in assembly languages.

  • Replace < (less than) with _lt= .
  • Replace > (greater than) with _gt.

Should I send this to the devel-mailing list= ?





--
DAI Yi
(=E4=BB=A3 =E6=AF=85)
--000e0cd75f96945ea9047ad84baf--