From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Peter Lee Newsgroups: gmane.emacs.help Subject: Re: (OT) cvs emacs build fails Date: Sat, 28 Jun 2003 00:00:29 GMT Organization: SBC http://yahoo.sbc.com Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1056758806 23748 80.91.224.249 (28 Jun 2003 00:06:46 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 28 Jun 2003 00:06:46 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Sat Jun 28 02:06:40 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19W3Em-0006Ac-00 for ; Sat, 28 Jun 2003 02:06:40 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19W3Dw-0001CL-Nk for gnu-help-gnu-emacs@m.gmane.org; Fri, 27 Jun 2003 20:05:48 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!prodigy.com!newsmst01.news.prodigy.com!prodigy.com!postmaster.news.prodigy.com!newssvr30.news.prodigy.com.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (windows-nt) Cancel-Lock: sha1:Rio7cEle+VgKGxtQ7UMRUVlOTK8= Original-Lines: 21 Original-NNTP-Posting-Host: 216.62.199.3 Original-X-Complaints-To: abuse@prodigy.net Original-X-Trace: newssvr30.news.prodigy.com 1056758429 ST000 216.62.199.3 (Fri, 27 Jun 2003 20:00:29 EDT) Original-NNTP-Posting-Date: Fri, 27 Jun 2003 20:00:29 EDT X-UserInfo1: T[OSS\WGPZYKRT\YN[OJNW@@YJ_ZTB\MV@BZMVMHQAVTUZ]CLNTCPFK[WDXDHV[K^FCGJCJLPF_D_NCC@FUG^Q\DINVAXSLIFXYJSSCCALP@PB@\OS@BITWAH\CQZKJMMD^SJA^NXA\GVLSRBD^M_NW_F[YLVTWIGAXAQBOATKBBQRXECDFDMQ\DZFUE@\JM Original-Xref: shelby.stanford.edu gnu.emacs.help:114802 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:11295 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:11295 For anyone else that might be having this problem the solution was to define menu-bar-options-menu before the loading of mule-cmds. ------------------------------------------------------------------ ;; I copied this definition from menu-bar.el (defvar menu-bar-options-menu (make-sparse-keymap "Options")) ;; Any Emacs Lisp source file (*.el) loaded here after can contain ;; multilingual text. (load "international/mule-cmds") ------------------------------------------------------------------ No idea if it's a "bad thing" to define vars multiple times in lisp.