From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dove Young Newsgroups: gmane.emacs.help Subject: "Invalid function: bmkp-menu-bar-make-toggle" in Bookmark+ Date: Tue, 21 Jun 2011 00:24:35 +0800 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=000e0cd762aef8345e04a6272cb6 X-Trace: dough.gmane.org 1308591208 4636 80.91.229.12 (20 Jun 2011 17:33:28 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 20 Jun 2011 17:33:28 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jun 20 19:33:24 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QYiLj-0005Rv-9Y for geh-help-gnu-emacs@m.gmane.org; Mon, 20 Jun 2011 19:33:23 +0200 Original-Received: from localhost ([::1]:52040 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QYiLi-0006gG-5v for geh-help-gnu-emacs@m.gmane.org; Mon, 20 Jun 2011 13:33:22 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:46334) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QYhHX-0004bg-Hu for help-gnu-emacs@gnu.org; Mon, 20 Jun 2011 12:25:00 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QYhHV-00017V-Jd for help-gnu-emacs@gnu.org; Mon, 20 Jun 2011 12:24:59 -0400 Original-Received: from mail-gw0-f41.google.com ([74.125.83.41]:59884) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QYhHV-00017C-9W for help-gnu-emacs@gnu.org; Mon, 20 Jun 2011 12:24:57 -0400 Original-Received: by gwaa12 with SMTP id a12so911622gwa.0 for ; Mon, 20 Jun 2011 09:24:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:from:date:message-id:subject:to :content-type; bh=/Re6MVsR5aM3KqxQs8baOFByuGuHf4av5ea72pYfrSs=; b=e1T+whB8PctnA5hiQ1GVYAHMPUOzXM7E1no39usOcItGnkcmUkWDwkiesI8AkpsKY3 1OFxnt/UpbUbHTKR6XFi2djjNXHdfPfI9lfktFXFSyRumGPvLXDc1hOWy60OmguPXyTe jinx76ZwIMcXmiiF6D4A8aQk/8AGILPWJgOYE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=ZxbACi3oz9gG28VU/wd7hzW0rPFxXwLrrI6z37vHiohYtEgofn3CLlQ/Sl/w/SaYHp brxwCj+Egqq02MrtQUNh+zXQeIebQrbL6YKWB73jMKh8sNA/J0k5l5nt8xIuZH+pYsqr kD3u6Cbfj/kMGfIZF94SwfGfocGWdNYlG+t7g= Original-Received: by 10.150.14.3 with SMTP id 3mr5667741ybn.121.1308587095241; Mon, 20 Jun 2011 09:24:55 -0700 (PDT) Original-Received: by 10.150.190.11 with HTTP; Mon, 20 Jun 2011 09:24:35 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.83.41 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:81370 Archived-At: --000e0cd762aef8345e04a6272cb6 Content-Type: text/plain; charset=ISO-8859-1 When I try to init Bookmark+ by evaluate (require 'bookmark+), the following error occurs "Invalid function: bmkp-menu-bar-make-toggle" By investigate the bookmark+.el, the problem was located in bookmark+-key.el. Then I made a little modification and it works well. original bookmark+.el (require 'bookmark+-bmu) ; `*Bookmark List*' stuff. (require 'bookmark+-1) ; Rest of Bookmark+ required stuff, except keys & menus. (require 'bookmark+-key) ; Keys & menus. modified bookmark+.el (require 'bookmark+-bmu) ; `*Bookmark List*' stuff. (require 'bookmark+-1) ; Rest of Bookmark+ required stuff, except keys & menus. (load "bookmark+-key.el") (require 'bookmark+-key) ; Keys & menus. My Bookmark+ was downloaded from " https://github.com/emacsmirror/bookmark-plus.git". My environment is GNU Emacs 23.2.1 on Ubuntu 11.04 -- M-x Thinks --000e0cd762aef8345e04a6272cb6 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable When I try to init Bookmark+ by evaluate (require 'bookmark+), the foll= owing error occurs

"Invalid function: bmkp-menu-bar-make-toggle= "

By investigate the bookmark+.el, the problem was located in b= ookmark+-key.el. Then I made a little modification and it works well.

original bookmark+.el

(require 'bookmark+-bmu)=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 ; `*Bookmark List*' stuff.
(requir= e 'bookmark+-1)=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 ; Re= st of Bookmark+ required stuff, except keys & menus.
(require 'b= ookmark+-key)=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 ; Keys & men= us.

modified bookmark+.el

(require 'bookmark+-bmu)=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 ; `*Bookmark List*' stuff.
(requir= e 'bookmark+-1)=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 ; Re= st of Bookmark+ required stuff, except keys & menus.
(load "boo= kmark+-key.el")
(require 'bookmark+-key)=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 ;= Keys & menus.


My Bookmark+ was downloaded fro= m "https:= //github.com/emacsmirror/bookmark-plus.git". My environment is GNU= Emacs 23.2.1 on Ubuntu 11.04

--
M-x Thinks

--000e0cd762aef8345e04a6272cb6--