From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Fix UK spelling in comments and ChangeLog entries? Date: Sat, 28 Jun 2008 03:07:34 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1214615272 19156 80.91.229.12 (28 Jun 2008 01:07:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 28 Jun 2008 01:07:52 +0000 (UTC) Cc: rgm@gnu.org, eliz@gnu.org, monnier@iro.umontreal.ca, emacs-devel@gnu.org To: "Kenichi Handa" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jun 28 03:08:37 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KCOva-00022A-UR for ged-emacs-devel@m.gmane.org; Sat, 28 Jun 2008 03:08:35 +0200 Original-Received: from localhost ([127.0.0.1]:45880 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KCOul-0002xq-1n for ged-emacs-devel@m.gmane.org; Fri, 27 Jun 2008 21:07:43 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KCOuh-0002xb-6A for emacs-devel@gnu.org; Fri, 27 Jun 2008 21:07:39 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KCOue-0002xH-Sc for emacs-devel@gnu.org; Fri, 27 Jun 2008 21:07:37 -0400 Original-Received: from [199.232.76.173] (port=51470 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KCOue-0002xE-Mw for emacs-devel@gnu.org; Fri, 27 Jun 2008 21:07:36 -0400 Original-Received: from ik-out-1112.google.com ([66.249.90.178]:8740) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KCOue-0005Cl-1t for emacs-devel@gnu.org; Fri, 27 Jun 2008 21:07:36 -0400 Original-Received: by ik-out-1112.google.com with SMTP id c21so262163ika.2 for ; Fri, 27 Jun 2008 18:07:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=o5t3YD+S4MRFyZZtquUZe6twvh5/+saESZxyrH9SbLU=; b=a+YCvibhW2RwPy6rFA+vpf29ltT/HHlalGXaYm1zm8H32BgG+KM3yO0cSdlCNqiGfY /e3iUGGmgyUBaonaCkapuZwFWsmXRPssKrYE4T5cZ0xsjnVajdl/vlHj2HNKFytpMDnm BwcO2tYHq8T30m8zLnAPcj71kR0bdM3CIccn0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=MjWUlKlSu13GuFRvD7cEiqezIOqKxl/33aobqWl6bhdnPm0o/h4Hnqh8CuPLN7oKs+ Ma4T2F35DvyPHyzbOoX9gWL2dI+6rzYitsvbnfqsNeelg/pE6vDrIt4rEHjv7lN8PNMs VHHEzqz/xkI5XMt4ueuZiISquZfSjunlpM+Is= Original-Received: by 10.210.38.17 with SMTP id l17mr1731315ebl.34.1214615254639; Fri, 27 Jun 2008 18:07:34 -0700 (PDT) Original-Received: by 10.210.71.14 with HTTP; Fri, 27 Jun 2008 18:07:34 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:100082 Archived-At: >> > (e.g. remove/delete > >> ...you broke my Common Lisp heart. In a destructive way. > > Sorry, but I can't catch what you mean. It was a lame attempt at humor; you're excused for not getting it. remove and delete are groups of functions (remove, remove-if, remove-if-not, ec.) with similar behavior, but the remove* ones are non-destructive (they return a new list) while the delete* ones are destructive. So you wanting to conflate both terms produced a cognitive disonance :) Juanma