From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard M Stallman Newsgroups: gmane.emacs.bugs,gmane.emacs.pretest.bugs Subject: bug#1727: 23.0.60; char syntax for non-breaking space Date: Tue, 30 Dec 2008 17:26:50 -0500 Message-ID: References: Reply-To: rms@gnu.org, 1727@emacsbugs.donarmstrong.com NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: ger.gmane.org 1230677481 31384 80.91.229.12 (30 Dec 2008 22:51:21 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 30 Dec 2008 22:51:21 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org, bug-gnu-emacs@gnu.org, 1727@emacsbugs.donarmstrong.com To: Eli Zaretskii , handa@m17n.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Tue Dec 30 23:52:27 2008 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LHnRb-0006KF-LQ for geb-bug-gnu-emacs@m.gmane.org; Tue, 30 Dec 2008 23:52:13 +0100 Original-Received: from localhost ([127.0.0.1]:55813 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LHnQN-0004D3-KG for geb-bug-gnu-emacs@m.gmane.org; Tue, 30 Dec 2008 17:50:55 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LHnJ9-0001Td-In for bug-gnu-emacs@gnu.org; Tue, 30 Dec 2008 17:43:27 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LHnJ8-0001Ss-0O for bug-gnu-emacs@gnu.org; Tue, 30 Dec 2008 17:43:26 -0500 Original-Received: from [199.232.76.173] (port=37268 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LHnJ7-0001SX-Km for bug-gnu-emacs@gnu.org; Tue, 30 Dec 2008 17:43:25 -0500 Original-Received: from rzlab.ucr.edu ([138.23.92.77]:40523) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LHnJ6-0006jy-Lz for bug-gnu-emacs@gnu.org; Tue, 30 Dec 2008 17:43:25 -0500 Original-Received: from rzlab.ucr.edu (rzlab.ucr.edu [127.0.0.1]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id mBUMhMOL005122; Tue, 30 Dec 2008 14:43:22 -0800 Original-Received: (from debbugs@localhost) by rzlab.ucr.edu (8.13.8/8.13.8/Submit) id mBUMZ7wG003051; Tue, 30 Dec 2008 14:35:07 -0800 X-Loop: owner@emacsbugs.donarmstrong.com Resent-From: Richard M Stallman Resent-To: bug-submit-list@donarmstrong.com Resent-CC: Emacs Bugs Resent-Date: Tue, 30 Dec 2008 22:35:07 +0000 Resent-Message-ID: Resent-Sender: owner@emacsbugs.donarmstrong.com X-Emacs-PR-Message: followup 1727 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: Original-Received: via spool by 1727-submit@emacsbugs.donarmstrong.com id=B1727.12306760821334 (code B ref 1727); Tue, 30 Dec 2008 22:35:07 +0000 Original-Received: (at 1727) by emacsbugs.donarmstrong.com; 30 Dec 2008 22:28:02 +0000 X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. Original-Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id mBUMRsUp001317; Tue, 30 Dec 2008 14:27:55 -0800 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1LHn34-0000eB-3W; Tue, 30 Dec 2008 17:26:50 -0500 In-reply-to: (message from Eli Zaretskii on Mon, 29 Dec 2008 21:23:16 +0200) X-CrossAssassin-Score: 3 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Resent-Date: Tue, 30 Dec 2008 17:43:26 -0500 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:23596 gmane.emacs.pretest.bugs:23575 Archived-At: > When I type C-x = at a non-breaking space, it tells me that it > has code 160, hex a0. But when I execute (insert "\xa0"), > it inserts something that displays as `\240' (insert #xa0) works for me. Also: (insert ?\u00a0) Could you document this in the Lisp Manual? And the general principles so one can understand why this is so?