From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel,gmane.emacs.pretest.bugs Subject: Re: 23.0.50; url-generic-parse-url returns extra element Date: Sat, 26 Jan 2008 17:00:13 -0500 Message-ID: References: <479A80CA.8060506@gmail.com> <479B40B2.4000606@gmail.com> <479B9039.1010007@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1201384838 10850 80.91.229.12 (26 Jan 2008 22:00:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 26 Jan 2008 22:00:38 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org To: "Lennart Borgman \(gmail\)" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 26 23:00:56 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 1JIt52-0003U3-AV for ged-emacs-devel@m.gmane.org; Sat, 26 Jan 2008 23:00:52 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIt4b-0006KB-Rq for ged-emacs-devel@m.gmane.org; Sat, 26 Jan 2008 17:00:25 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JIt4Y-0006JC-C3 for emacs-devel@gnu.org; Sat, 26 Jan 2008 17:00:22 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JIt4V-0006GO-Ki for emacs-devel@gnu.org; Sat, 26 Jan 2008 17:00:21 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIt4V-0006GK-CT for emacs-devel@gnu.org; Sat, 26 Jan 2008 17:00:19 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JIt4V-0006k2-AR for emacs-devel@gnu.org; Sat, 26 Jan 2008 17:00:19 -0500 Original-Received: from mail.gnu.org ([199.232.76.166] helo=mx10.gnu.org) by fencepost.gnu.org with esmtp (Exim 4.67) (envelope-from ) id 1JIt4U-00069M-P8 for emacs-pretest-bug@gnu.org; Sat, 26 Jan 2008 17:00:18 -0500 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1JIt4S-0006jD-0J for emacs-pretest-bug@gnu.org; Sat, 26 Jan 2008 17:00:19 -0500 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JIt4R-0006j3-J1 for emacs-pretest-bug@gnu.org; Sat, 26 Jan 2008 17:00:15 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAGo8m0fO+J95dGdsb2JhbACQKAEwmzx+ X-IronPort-AV: E=Sophos;i="4.25,255,1199682000"; d="scan'208";a="13252983" Original-Received: from smtp.pppoe.ca ([65.39.196.238]) by ironport2-out.pppoe.ca with ESMTP; 26 Jan 2008 17:00:14 -0500 Original-Received: from pastel.home ([206.248.159.121]) by smtp.pppoe.ca (Internet Mail Server v1.0) with ESMTP id GXA62514; Sat, 26 Jan 2008 17:00:14 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id D5AED858A; Sat, 26 Jan 2008 17:00:13 -0500 (EST) In-Reply-To: <479B9039.1010007@gmail.com> (Lennart Borgman's message of "Sat, 26 Jan 2008 20:55:37 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.50 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:87604 gmane.emacs.pretest.bugs:20774 Archived-At: >>>>> url-generic-parse-url now adds an extra element cl-struct-url at the >>>>> beginning of the vector returned. To see this evaluate >>>>> (url-generic-parse-url "http://www.no.se/") >>>> In what way is it a problem? >> >>> I am using the TYPE value in the returned vector and need to know >>> where it is. >> >> How 'bout using `url-type' ? > Hm, guess that this mysterious beast can do the job if you say so. But what > is it? Where is it defined? C-h f says it is defined in url-parse.el, but it > hides somewhere there where I can't see it. It's defined along with all other accessor (and setter) functions in the `defstruct' form in url-parse. Stefan