From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: How to truly unbind global bindings? Date: Tue, 25 Nov 2014 21:50:28 +0200 Message-ID: <837fyjoy9n.fsf@gnu.org> References: <98be95d8-086a-4a28-aa34-937c53e2c4de@default> <838uizoz58.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1416945159 24331 80.91.229.3 (25 Nov 2014 19:52:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Nov 2014 19:52:39 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 25 20:52:32 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XtMA2-0005LH-JG for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 20:52:30 +0100 Original-Received: from localhost ([::1]:59285 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtMA2-0002l5-4z for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 14:52:30 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtM7z-00007N-2a for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 14:50:28 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XtM7s-0005Hn-Ia for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 14:50:22 -0500 Original-Received: from mtaout24.012.net.il ([80.179.55.180]:55663) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtM7s-0005HP-AN for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 14:50:16 -0500 Original-Received: from conversion-daemon.mtaout24.012.net.il by mtaout24.012.net.il (HyperSendmail v2007.08) id <0NFM00K0010UIU00@mtaout24.012.net.il> for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 21:42:35 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout24.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NFM00F111EZEK60@mtaout24.012.net.il> for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 21:42:35 +0200 (IST) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 80.179.55.180 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:101191 Archived-At: > Date: Tue, 25 Nov 2014 20:39:37 +0100 > From: Alexander Shukaev > Cc: help-gnu-emacs > > After: > > (use-global-map (make-sparse-keymap)) > > I lost: > > Global Bindings: > > key binding > --- ------- > > > SPC .. ~ self-insert-command > \200 .. self-insert-command > \200 .. \377 self-insert-command > > which is needed for typing. > > I will have to add them back from my configuration. What are symbols starting > from 0200 mean? Like I said: single-byte non-ASCII characters. > And do I really need them in the usual workflow? Not sure what "the usual workflow" means. > Or restoring ASCII would be enough? Probably enough. > Why some of them are protected with MSDOS preprocessor check? Because other systems use Latin-1, which start at 0240 octal, while MS-DOS uses DOS codepages that have valid characters between 0200 and 0240.