From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alexander Shukaev Newsgroups: gmane.emacs.help Subject: How to truly unbind global bindings? Date: Tue, 25 Nov 2014 12:09:21 +0100 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1416913800 3058 80.91.229.3 (25 Nov 2014 11:10:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Nov 2014 11:10:00 +0000 (UTC) To: help-gnu-emacs Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 25 12:09:52 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 1XtE09-000607-Um for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 12:09:46 +0100 Original-Received: from localhost ([::1]:56481 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtE09-0005dO-CC for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 06:09:45 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34751) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtDzp-0005ZR-Bo for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 06:09:26 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XtDzo-00029B-5h for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 06:09:25 -0500 Original-Received: from mail-la0-x233.google.com ([2a00:1450:4010:c03::233]:60494) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtDzn-00028O-TL for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 06:09:24 -0500 Original-Received: by mail-la0-f51.google.com with SMTP id ms9so308147lab.10 for ; Tue, 25 Nov 2014 03:09:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=hVDOzVi/DInFqJycR447kLWJq+WlMsXsvUF5Zhqr0Zo=; b=RW3p+GrL3lqDPgjf/GzfVvO4Q4SjFonrkVjraau+awqupgFD956qqcy6tsag3gWF8S WMWJa49pLJ3gf1UIKEt+RXlDACXGe+yNOP/zOogC7ao8JcGsN9vn/QKM7Xbi/yKIi+4m LgxaLmeJMzIYcaDX9JOu0Yu410L4MHouE1zc398jb3kAx7FC7xbdGVtTuklOnpYhEyUp +1eYJkru2fezJb8WVygXDTmMrcc+bGZ1haMNicwgGTeibi6gfOEcoGkDY3YfWdr0UQH2 r6lbQOqd272vzJ0q8RWsmCgGRUS4ZVyYMMgM8zPuRxwqp0bf0ZJd+EkkJ4hEChwx3GA8 O2qg== X-Received: by 10.152.37.6 with SMTP id u6mr12563240laj.74.1416913762033; Tue, 25 Nov 2014 03:09:22 -0800 (PST) Original-Received: by 10.112.21.136 with HTTP; Tue, 25 Nov 2014 03:09:21 -0800 (PST) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::233 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 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:101154 Archived-At: I've just tried (set 'global-map (make-sparse-keymap)) but issuing [C-h][b] still shows tons of mappings, especially in the *Global Bindings* section: Global Bindings: > key binding > --- ------- > C-@ set-mark-command > C-a move-beginning-of-line > C-b backward-char > C-d delete-char > C-e move-end-of-line > C-f forward-char > C-g keyboard-quit > C-h help-command > TAB indent-for-tab-command > C-k kill-line > C-l recenter-top-bottom > RET newline > C-n next-line > C-o open-line > ... ... and there are so many more to come. I would like to get rid of these completely. How can I possibly do that in one simple function call? I would like the solution to be a total wipeout, rather than a loop which is setting all of these mappings to `nil'. Thank you in advance.