Silence cperl-mode compilation

* progmodes/cperl-mode.el (imenu-choose-buffer-index)
(file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
(cperl-imenu-on-info): Require imenu.
This commit is contained in:
Glenn Morris 2013-05-28 19:46:35 -07:00
parent cf6a9685f1
commit 3694d13f70
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2013-05-29 Glenn Morris <rgm@gnu.org>
* progmodes/cperl-mode.el (imenu-choose-buffer-index)
(file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
(cperl-imenu-on-info): Require imenu.
2013-05-28 Alan Mackenzie <acm@muc.de>
Handle "capitalised keywords" correctly.

View file

@ -6671,10 +6671,13 @@ Customized by setting variables `cperl-shrink-wrap-info-frame',
(buffer-substring
(match-beginning 1) (match-end 1)))
(declare-function imenu-choose-buffer-index "imenu" (&optional prompt alist))
(defun cperl-imenu-on-info ()
"Shows imenu for Perl Info Buffer.
Opens Perl Info buffer if needed."
(interactive)
(require 'imenu)
(let* ((buffer (current-buffer))
imenu-create-index-function
imenu-prev-index-position-function
@ -7134,6 +7137,10 @@ Use as
(defvar cperl-hierarchy '(() ())
"Global hierarchy of classes.")
;; Follows call to (autoloaded) visit-tags-table.
(declare-function file-of-tag "etags" (&optional relative))
(declare-function etags-snarf-tag "etags" (&optional use-explicit))
(defun cperl-tags-hier-fill ()
;; Suppose we are in a tag table cooked by cperl.
(goto-char 1)
@ -7177,6 +7184,7 @@ Use as
(end-of-line))))
(declare-function x-popup-menu "menu.c" (position menu))
(declare-function etags-goto-tag-location "etags" (tag-info))
(defun cperl-tags-hier-init (&optional update)
"Show hierarchical menu of classes and methods.