From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: keymaps.texi Date: Sat, 15 Jan 2005 13:15:54 -0600 (CST) Message-ID: <200501151915.j0FJFsY06252@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1105816680 23261 80.91.229.6 (15 Jan 2005 19:18:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 15 Jan 2005 19:18:00 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 15 20:17:52 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CptQl-0006Ij-00 for ; Sat, 15 Jan 2005 20:17:52 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CptcX-0007zq-2j for ged-emacs-devel@m.gmane.org; Sat, 15 Jan 2005 14:30:01 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Cptbt-0007nJ-NQ for emacs-devel@gnu.org; Sat, 15 Jan 2005 14:29:27 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Cptbl-0007hT-5d for emacs-devel@gnu.org; Sat, 15 Jan 2005 14:29:13 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Cptbk-0007hI-Vh for emacs-devel@gnu.org; Sat, 15 Jan 2005 14:29:13 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CptPJ-0002jX-RU for emacs-devel@gnu.org; Sat, 15 Jan 2005 14:16:21 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id j0FJGL9N021795 for ; Sat, 15 Jan 2005 13:16:21 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id j0FJFsY06252; Sat, 15 Jan 2005 13:15:54 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: emacs-devel@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:32252 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:32252 I propose the following change to keymaps.texi, to update it for a (not so recent) change in `suppress-keymap'. I can install if desired. ===File ~/keymaps.texi-diff================================= *** keymaps.texi 13 Jan 2005 16:00:33 -0600 1.56 --- keymaps.texi 15 Jan 2005 12:51:47 -0600 *************** *** 1266,1274 **** @defun suppress-keymap keymap &optional nodigits @cindex @code{self-insert-command} override This function changes the contents of the full keymap @var{keymap} by ! making all the printing characters undefined. More precisely, it binds ! them to the command @code{undefined}. This makes ordinary insertion of ! text impossible. @code{suppress-keymap} returns @code{nil}. If @var{nodigits} is @code{nil}, then @code{suppress-keymap} defines digits to run @code{digit-argument}, and @kbd{-} to run --- 1266,1274 ---- @defun suppress-keymap keymap &optional nodigits @cindex @code{self-insert-command} override This function changes the contents of the full keymap @var{keymap} by ! remapping @code{self-insert-command} to the command @code{undefined} ! (@pxref{Remapping Commands}). This makes ordinary insertion of text ! impossible. @code{suppress-keymap} returns @code{nil}. If @var{nodigits} is @code{nil}, then @code{suppress-keymap} defines digits to run @code{digit-argument}, and @kbd{-} to run ============================================================