From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nicolas Richard Newsgroups: gmane.emacs.devel Subject: Re: string> missing? Date: Thu, 04 Jun 2015 09:44:19 +0200 Message-ID: <87y4jzudd8.fsf@members.fsf.org> References: <87oakxkvqw.fsf@petton.fr> <83zj4grgkc.fsf@gnu.org> <87sia8n8b5.fsf@petton.fr> <87zj4gu821.fsf@gnu.org> <83sia8rdkm.fsf@gnu.org> <83pp5crbfd.fsf@gnu.org> <83mw0gr4eh.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1433421175 21941 80.91.229.3 (4 Jun 2015 12:32:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 4 Jun 2015 12:32:55 +0000 (UTC) Cc: Stefan Monnier , emacs-devel To: Thibaut Verron Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 04 14:32:47 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 1Z0UKB-0007XA-LK for ged-emacs-devel@m.gmane.org; Thu, 04 Jun 2015 14:32:43 +0200 Original-Received: from localhost ([::1]:42243 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z0UKA-0001AZ-S6 for ged-emacs-devel@m.gmane.org; Thu, 04 Jun 2015 08:32:42 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33779) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z0PpF-0005BV-9V for emacs-devel@gnu.org; Thu, 04 Jun 2015 03:44:30 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z0Pp9-0000Id-CM for emacs-devel@gnu.org; Thu, 04 Jun 2015 03:44:29 -0400 Original-Received: from mxin.ulb.ac.be ([164.15.128.112]:4924) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z0Pp9-0000I4-5i for emacs-devel@gnu.org; Thu, 04 Jun 2015 03:44:23 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Am4bAJsAcFWkD4Xx/2dsb2JhbABbhEKsTwaZVwKCAQEBAQEBAYELQQECAoNdAQEEeRAIAyElDwEEDTwTiBgDEtVcDYUcAQsBH4YZhSqCTYI5B4QtAQScV4lOiE6HBySDeTwxgkcBAQE Original-Received: from mathsrv4.ulb.ac.be (HELO localhost) ([164.15.133.241]) by smtp.ulb.ac.be with ESMTP; 04 Jun 2015 09:44:22 +0200 In-Reply-To: (Thibaut Verron's message of "Thu, 4 Jun 2015 07:30:08 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 164.15.128.112 X-Mailman-Approved-At: Thu, 04 Jun 2015 08:32:41 -0400 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:187018 Archived-At: Thibaut Verron writes: > Mostly to this: > > (setq str1 "foo") > (setq str2 "foo") > (setq str3 str1) > (= str1 str2) ;;==> *error* > (eq str1 str2) ;;==> nil > (eq str1 "foo") ;;==> nil > (eq str1 str3) ;;==> nil If that is not a typo, then it is a bug. I get t. > (string= str1 str2) ;;==> t And also: (equal str1 str2) ;;==> t -- Nico