From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: string-to-char Date: Mon, 27 Nov 2006 18:43:56 -0500 Message-ID: References: <456AB507.1060808@gmx.at> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1164686806 21798 80.91.229.2 (28 Nov 2006 04:06:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 28 Nov 2006 04:06:46 +0000 (UTC) Cc: rudalics@gmx.at, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 28 05:06:44 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 1GouEv-0001Xb-HS for ged-emacs-devel@m.gmane.org; Tue, 28 Nov 2006 05:06:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GouEu-0007OQ-C3 for ged-emacs-devel@m.gmane.org; Mon, 27 Nov 2006 23:06:36 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GouCw-0005XX-1Z for emacs-devel@gnu.org; Mon, 27 Nov 2006 23:04:34 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GouCu-0005Uu-43 for emacs-devel@gnu.org; Mon, 27 Nov 2006 23:04:32 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GouCt-0005Uk-VB for emacs-devel@gnu.org; Mon, 27 Nov 2006 23:04:32 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GorpU-0000JR-L5 for emacs-devel@gnu.org; Mon, 27 Nov 2006 20:32:13 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.52) id 1Goq8i-0004Pm-7Q; Mon, 27 Nov 2006 18:43:56 -0500 Original-To: "Juanma Barranquero" In-reply-to: (lekktu@gmail.com) 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:62899 Archived-At: 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...) Please feel free to simplify them.