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: string-to-char Date: Mon, 27 Nov 2006 11:52:56 +0100 Message-ID: References: <456AB507.1060808@gmx.at> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1164624944 27222 80.91.229.2 (27 Nov 2006 10:55:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 27 Nov 2006 10:55:44 +0000 (UTC) Cc: emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 27 11:55:41 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Goe96-0003YI-9o for ged-emacs-devel@m.gmane.org; Mon, 27 Nov 2006 11:55:32 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Goe95-0001H1-Q7 for ged-emacs-devel@m.gmane.org; Mon, 27 Nov 2006 05:55:31 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Goe6f-0000Fq-5d for emacs-devel@gnu.org; Mon, 27 Nov 2006 05:53:01 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Goe6c-0000EY-OG for emacs-devel@gnu.org; Mon, 27 Nov 2006 05:53:00 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Goe6c-0000ED-2Z for emacs-devel@gnu.org; Mon, 27 Nov 2006 05:52:58 -0500 Original-Received: from [64.233.182.185] (helo=nf-out-0910.google.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Goe6b-0001OF-WF for emacs-devel@gnu.org; Mon, 27 Nov 2006 05:52:58 -0500 Original-Received: by nf-out-0910.google.com with SMTP id d4so2200340nfe for ; Mon, 27 Nov 2006 02:52:56 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=s6b8F1PZO4pYh8caTcLt+yoTgbenw8w+HYeQOeXJoT45Ph/2unme4kX93ifTfRCRDe9eeiSn59oRm+AxZ2hmIupawUMGw/sX5RURDjzWwGCiZ0e2lgnlkTBAZ6rvUQKthJrCVGoDpWe46LmACXs+IfZFZ08f8p3LAFn7p2Zn9to= Original-Received: by 10.82.123.16 with SMTP id v16mr1947527buc.1164624776147; Mon, 27 Nov 2006 02:52:56 -0800 (PST) Original-Received: by 10.82.147.2 with HTTP; Mon, 27 Nov 2006 02:52:56 -0800 (PST) Original-To: "martin rudalics" In-Reply-To: <456AB507.1060808@gmx.at> Content-Disposition: inline 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:62856 Archived-At: On 11/27/06, martin rudalics wrote: > Given that some 60 files of current Emacs use `string-to-char' And some of those uses are quite weird, BTW: - In erc/erc.el: (separator (make-string erc-fill-column (string-to-char "="))) (make-string (length x) (string-to-char "b")) - In progmodes/fortran.el: (or (equal char (string-to-char " ")) Aren't these redundant? (I don't think the unibyte/multibyte issue is relevant in any of them...) /L/e/k/t/u