From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: decode-coding-string and consing Date: Tue, 11 Feb 2003 08:32:40 +0200 (IST) Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: main.gmane.org 1044945104 31755 80.91.224.249 (11 Feb 2003 06:31:44 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 11 Feb 2003 06:31:44 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18iTxG-0008G1-00 for ; Tue, 11 Feb 2003 07:31:42 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18iTyv-0001SG-03 for gnu-help-gnu-emacs@m.gmane.org; Tue, 11 Feb 2003 01:33:25 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18iTyj-0001Lh-00 for help-gnu-emacs@gnu.org; Tue, 11 Feb 2003 01:33:13 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18iTyi-0001Hh-00 for help-gnu-emacs@gnu.org; Tue, 11 Feb 2003 01:33:12 -0500 Original-Received: from is.elta.co.il ([199.203.121.2]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18iTyh-0001GB-00 for help-gnu-emacs@gnu.org; Tue, 11 Feb 2003 01:33:11 -0500 Original-Received: from is (is [199.203.121.2]) by is.elta.co.il (8.9.3/8.8.8) with SMTP id IAA26040 for ; Tue, 11 Feb 2003 08:32:41 +0200 (IST) X-Sender: eliz@is Original-To: help-gnu-emacs@gnu.org In-Reply-To: X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:6556 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:6556 On Mon, 10 Feb 2003, Jesper Harder wrote: > >> Under what conditions is the decoding operation "trivial"? > > > > If CODING-SYSTEM is nil or such that no encoding is necessary at all. > > But I don't understand why any encoding is needed at all in: > > (decode-coding-string "abc" 'us-ascii t) Why did you use us-ascii at all here? It's not really a coding system. Why not nil or raw-text? Anyway, is there some real problem behind this discussion?