help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

"Invalid function: bmkp-menu-bar-make-toggle" in Bookmark+


From: Dove Young
Subject: "Invalid function: bmkp-menu-bar-make-toggle" in Bookmark+
Date: Tue, 21 Jun 2011 00:24:35 +0800

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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]