From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: M-o M-g Date: Sat, 26 Mar 2005 21:44:07 -0600 (CST) Message-ID: <200503270344.j2R3i7C18611@raven.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1111895198 4398 80.91.229.2 (27 Mar 2005 03:46:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 27 Mar 2005 03:46:38 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Mar 27 05:46:36 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DFOjP-0000P4-U6 for ged-emacs-devel@m.gmane.org; Sun, 27 Mar 2005 05:46:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DFOzE-0000fi-A3 for ged-emacs-devel@m.gmane.org; Sat, 26 Mar 2005 23:02:52 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DFOz5-0000fA-Fo for emacs-devel@gnu.org; Sat, 26 Mar 2005 23:02:43 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DFOz4-0000eT-8E for emacs-devel@gnu.org; Sat, 26 Mar 2005 23:02:42 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DFOz4-0000e2-3q for emacs-devel@gnu.org; Sat, 26 Mar 2005 23:02:42 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DFOi0-00039H-G5 for emacs-devel@gnu.org; Sat, 26 Mar 2005 22:45:04 -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 j2R3iw9N004933 for ; Sat, 26 Mar 2005 21:44:58 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id j2R3i7C18611; Sat, 26 Mar 2005 21:44:07 -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: news.gmane.org gmane.emacs.devel:35212 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:35212 `goto-line' has recently gotten the convenient binding `M-g g'. But now `font-lock-fontify-block', which I personally use _way_ more often than goto-line has the inconvenient binding `M-o M-g". What about the small patch below, which would make it `M-o M-o'. I can install if desired. ===File ~/font-lock-diff==================================== *** font-lock.el 21 Mar 2005 14:09:05 -0600 1.235 --- font-lock.el 26 Mar 2005 21:09:48 -0600 *************** *** 1097,1103 **** ((error quit) (message "Fontifying block...%s" error-data))))))) (if (boundp 'facemenu-keymap) ! (define-key facemenu-keymap "\M-g" 'font-lock-fontify-block)) ;;; End of Fontification functions. --- 1097,1103 ---- ((error quit) (message "Fontifying block...%s" error-data))))))) (if (boundp 'facemenu-keymap) ! (define-key facemenu-keymap "\M-o" 'font-lock-fontify-block)) ;;; End of Fontification functions. ============================================================