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:31:31 +0200 Message-ID: <838uizoz58.fsf@gnu.org> References: <98be95d8-086a-4a28-aa34-937c53e2c4de@default> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1416943912 3975 80.91.229.3 (25 Nov 2014 19:31:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Nov 2014 19:31:52 +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:31:45 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 1XtLpw-0005kh-Rs for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 20:31:45 +0100 Original-Received: from localhost ([::1]:59149 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtLpw-0007VT-5K for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 14:31:44 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:55843) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtLpf-0007Uj-Ca for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 14:31:33 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XtLpX-00073J-AS for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 14:31:27 -0500 Original-Received: from mtaout27.012.net.il ([80.179.55.183]:49412) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtLpX-000734-26 for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 14:31:19 -0500 Original-Received: from conversion-daemon.mtaout27.012.net.il by mtaout27.012.net.il (HyperSendmail v2007.08) id <0NFM003000GZDD00@mtaout27.012.net.il> for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 21:26:48 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout27.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NFM001L20OOGZ20@mtaout27.012.net.il> for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 21:26:48 +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.183 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:101189 Archived-At: > Date: Tue, 25 Nov 2014 20:04:23 +0100 > From: Alexander Shukaev > Cc: help-gnu-emacs > > for (n = 040; n < 0177; n++) > initial_define_key (global_map, n, "self-insert-command"); > #ifdef MSDOS > for (n = 0200; n < 0240; n++) > initial_define_key (global_map, n, "self-insert-command"); > #endif > for (n = 0240; n < 0400; n++) > initial_define_key (global_map, n, "self-insert-command"); > > > I understand that the first loop is simply pushing the printable 7-bits of > ASCII table into the `global-map'. Could anyone elaborate what are the rest > loops for? Non-ASCII single-byte characters. > Do I really need them? I don't understand what you are trying to do enough to answer that.