From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andreas Politz Newsgroups: gmane.emacs.bugs Subject: bug#14776: 24.3.50; [PATCH] parse-time-string performance Date: Thu, 04 Jul 2013 21:47:58 +0200 Message-ID: <87k3l6jedt.fsf@hochschule-trier.de> References: <87sizwxwu2.fsf@hochschule-trier.de> <87li5m1geu.fsf@hochschule-trier.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1372967359 6008 80.91.229.3 (4 Jul 2013 19:49:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 4 Jul 2013 19:49:19 +0000 (UTC) Cc: 14776@debbugs.gnu.org To: Lars Magne Ingebrigtsen Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Jul 04 21:49:19 2013 Return-path: Envelope-to: geb-bug-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 1UupWo-0007FY-LN for geb-bug-gnu-emacs@m.gmane.org; Thu, 04 Jul 2013 21:49:18 +0200 Original-Received: from localhost ([::1]:35210 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UupWo-0000O0-C0 for geb-bug-gnu-emacs@m.gmane.org; Thu, 04 Jul 2013 15:49:18 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34069) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UupWf-0000Ml-2z for bug-gnu-emacs@gnu.org; Thu, 04 Jul 2013 15:49:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UupWY-0007zN-O7 for bug-gnu-emacs@gnu.org; Thu, 04 Jul 2013 15:49:08 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:35456) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UupWY-0007zH-JJ for bug-gnu-emacs@gnu.org; Thu, 04 Jul 2013 15:49:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1UupWY-0005Wm-2F for bug-gnu-emacs@gnu.org; Thu, 04 Jul 2013 15:49:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Andreas Politz Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 04 Jul 2013 19:49:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 14776 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch Original-Received: via spool by 14776-submit@debbugs.gnu.org id=B14776.137296730921191 (code B ref 14776); Thu, 04 Jul 2013 19:49:02 +0000 Original-Received: (at 14776) by debbugs.gnu.org; 4 Jul 2013 19:48:29 +0000 Original-Received: from localhost ([127.0.0.1]:58005 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UupVx-0005Vf-9M for submit@debbugs.gnu.org; Thu, 04 Jul 2013 15:48:29 -0400 Original-Received: from gateway-a.fh-trier.de ([143.93.54.181]:47073) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UupVr-0005VC-8n for 14776@debbugs.gnu.org; Thu, 04 Jul 2013 15:48:23 -0400 X-Virus-Scanned: by Amavisd-new + McAfee uvscan + ClamAV [Rechenzentrum Hochschule Trier] Original-Received: from luca (dslb-178-004-172-178.pools.arcor-ip.net [178.4.172.178]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: politza) by gateway-a.fh-trier.de (Postfix) with ESMTPSA id 06475175FBE5; Thu, 4 Jul 2013 21:47:58 +0200 (CEST) Original-Received: from localhost ([127.0.0.1] helo=luca) by luca with esmtp (Exim 4.72) (envelope-from ) id 1UupVW-0007MF-5o; Thu, 04 Jul 2013 21:47:58 +0200 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Thu, 04 Jul 2013 20:41:33 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:75912 Archived-At: Lars Magne Ingebrigtsen writes: > But this reminds me: Why are we parsing data strings in Emacs Lisp at > all? Doesn't libc (or gnulib) have date parsing functions? Like strptime ? Probably not worth it, since it doesn't seem to be a bottleneck, contrary to what I was suggesting. Or are there other reasons ? -ap