From xemacs-m  Sun Apr  6 10:40:33 1997
Received: from jagor.srce.hr (hniksic@jagor.srce.hr [161.53.2.130])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id KAA27938
	for <xemacs-beta@xemacs.org>; Sun, 6 Apr 1997 10:40:32 -0500 (CDT)
Received: (from hniksic@localhost)
          by jagor.srce.hr (8.8.5/8.8.4)
	  id RAA28729; Sun, 6 Apr 1997 17:40:30 +0200 (MET DST)
Sender: hniksic@public.srce.hr
To: XEmacs Developers <xemacs-beta@xemacs.org>
Subject: facemenu and `M-g'
X-URL: ftp://gnjilux.cc.fer.hr/pub/unix/util/wget/
X-Attribution: Hrv
X-Face: &}4JQk=L;e.~x+|eo]#DGk@x3~ed!.~lZ}YQcYb7f[WL9L'Z*+OyA\nA
        EL1M(".[qvI#a2E6WYI5>>e7'@_)3Ol9p|Nn2wNa/;~06jL*B%tTcn/X
        vhAu7qeES0\|MF%$;sI#yn1+y"
From: Hrvoje Niksic <hniksic@srce.hr>
Date: 06 Apr 1997 17:40:29 +0200
Message-ID: <kigpvw8gnwy.fsf@jagor.srce.hr>
Lines: 43

Is it me, or is `facemenu' loaded by default?  Now, I don't have
anything against its entry in the Edit menu (it's kinda fun), but I
can never forgive the rebinding of `M-g'.  Whoever ported it to XEmacs 
did comment out the autoload to `M-g', but forgot to change the
`facemenu-key' variable.

My proposition is to change `facemenu-key' to "C-x F".  Then `C-x F i' 
would set face to italic, etc.  Here is the patch that makes the
changes.  I'd like this patch to be added to 19.15/16, too.

--- facemenu.el.orig	Sun Apr  6 17:34:48 1997
+++ facemenu.el	Sun Apr  6 17:39:29 1997
@@ -47,8 +47,8 @@
 ;; modifications before inserting or typing anything.
 ;;
 ;; Faces can be selected from the keyboard as well.  
-;; The standard keybindings are M-g (or ESC g) + letter:
-;; M-g i = "set italic",  M-g b = "set bold", etc.
+;; The standard keybindings are C-x F + letter:
+;; `C-x F i' = "set italic",  `C-x F b' = "set bold", etc.
 
 ;;; Customization:
 ;; An alternative set of keybindings that may be easier to type can be set up
@@ -101,10 +101,9 @@
 (require 'easymenu)
 
 ;;; Provide some binding for startup:
-;;; XEmacs -- goto-line is a *much* better binding for M-g.
-;;;dont ###autoload (define-key global-map "\M-g" 'facemenu-keymap)
+;;;###autoload (define-key global-map "\C-xF" 'facemenu-keymap)
 
-(defvar facemenu-key "\M-g"
+(defvar facemenu-key "\C-xF"
   "Prefix key to use for facemenu commands.")
 
 (defvar facemenu-keybindings


-- 
Hrvoje Niksic <hniksic@srce.hr> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
`VI' - An editor used by those heretics that don't subscribe to
       the Emacs religion.

