;ELC   
;;; Compiled by buildd@akateko.buildd on Fri Oct 25 13:51:26 2013
;;; from file /build/buildd/emacs23-23.4+1/debian/build-x/lisp/imenu.el
;;; in Emacs version 23.4.1
;;; with all optimizations.

;;; This file uses dynamic docstrings, first added in Emacs 19.29.

;;; This file does not contain utf-8 non-ASCII characters,
;;; and so can be loaded in Emacs versions earlier than 23.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


(custom-declare-group 'imenu nil "Mode-specific buffer indexes." :group 'matching :group 'frames :group 'convenience :link '(custom-manual "(elisp)Imenu"))
#@263 Non-nil means use markers instead of integers for Imenu buffer positions.

Setting this to nil makes Imenu work a little faster but editing the
buffer will make the generated index positions wrong.

This might not yet be honored by all index-building functions.
(custom-declare-variable 'imenu-use-markers 't '(#$ . 692) :type 'boolean :group 'imenu)
#@53 If a number, truncate Imenu entries to that length.
(custom-declare-variable 'imenu-max-item-length '60 '(#$ . 1049) :type '(choice integer (const :tag "Unlimited")) :group 'imenu)
#@55 Non-nil means Imenu should always rescan the buffers.
(custom-declare-variable 'imenu-auto-rescan 'nil '(#$ . 1236) :type 'boolean :group 'imenu)
#@107 Imenu auto-rescan is disabled in buffers larger than this size (in bytes).
This variable is buffer-local.
(custom-declare-variable 'imenu-auto-rescan-maxout '60000 '(#$ . 1389) :type 'integer :group 'imenu)
(byte-code "\301B\302\301!\204 \303\301\304\"\210\305\301\306\307#\207" [current-load-list imenu-always-use-completion-buffer-p default-boundp set-default nil make-obsolete-variable imenu-use-popup-menu "22.1"] 4)
#@194 Use a popup menu rather than a minibuffer prompt.
If nil, always use a minibuffer prompt.
If t, always use a popup menu,
If `on-mouse' use a popup menu when `imenu' was invoked with the mouse.
(custom-declare-variable 'imenu-use-popup-menu '(if imenu-always-use-completion-buffer-p (not (eq imenu-always-use-completion-buffer-p 'never)) 'on-mouse) '(#$ . 1820) :type '(choice (const :tag "On Mouse" on-mouse) (const :tag "Never" nil) (other :tag "Always" t)) :group 'imenu)
#@50 If non-nil, eagerly popup the completion buffer.
(custom-declare-variable 'imenu-eager-completion-buffer '(not (eq imenu-always-use-completion-buffer-p 'never)) '(#$ . 2300) :type 'boolean :group 'imenu :version "22.1")
#@177 Hooks called after jumping to a place in the buffer.

Useful things to use here include `reposition-window', `recenter', and
(lambda () (recenter 0)) to show at top of screen.
(custom-declare-variable 'imenu-after-jump-hook 'nil '(#$ . 2527) :type 'hook :group 'imenu)
#@500 The function to use for sorting the index mouse-menu.

Affects only the mouse index menu.

Set this to nil if you don't want any sorting (faster).
The items in the menu are then presented in the order they were found
in the buffer.

Set it to `imenu--sort-by-name' if you want alphabetic sorting.

The function should take two arguments and return t if the first
element should come before the second.  The arguments are cons cells;
(NAME . POSITION).  Look at `imenu--sort-by-name' for an example.
(custom-declare-variable 'imenu-sort-function 'nil '(#$ . 2803) :type '(choice (const :tag "No sorting" nil) (const :tag "Sort by name" imenu--sort-by-name) (function :tag "Another function")) :group 'imenu)
#@55 Maximum number of elements in a mouse menu for Imenu.
(custom-declare-variable 'imenu-max-items '25 '(#$ . 3516) :type 'integer :group 'imenu)
#@139 The replacement string for spaces in index names.
Used when presenting the index in a completion buffer to make the
names work as tokens.
(custom-declare-variable 'imenu-space-replacement '"." '(#$ . 3666) :type '(choice string (const nil)) :group 'imenu)
#@149 The separator between index names of different levels.
Used for making mouse-menu titles and for flattening nested indexes
with name concatenation.
(custom-declare-variable 'imenu-level-separator '":" '(#$ . 3929) :type 'string :group 'imenu)
#@425 The regex pattern to use for creating a buffer index.

If non-nil this pattern is passed to `imenu--generic-function' to
create a buffer index.  Look there for the documentation of this
pattern's structure.

For example, see the value of `fortran-imenu-generic-expression' used by
`fortran-mode' with `imenu-syntax-alist' set locally to give the
characters which normally have "symbol" syntax "word" syntax
during matching.
(defvar imenu-generic-expression nil (#$ . 4179))
(make-variable-buffer-local 'imenu-generic-expression)
#@290 The function to use for creating an index alist of the current buffer.

It should be a function that takes no arguments and returns
an index alist of the current buffer.  The function is
called within a `save-excursion'.

See `imenu--index-alist' for the format of the buffer index alist.
(defvar imenu-create-index-function 'imenu-default-create-index-function (#$ . 4715))
(make-variable-buffer-local 'imenu-create-index-function)
#@374 Function for finding the next index position.

If `imenu-create-index-function' is set to
`imenu-default-create-index-function', then you must set this variable
to a function that will find the next index, looking backwards in the
file.

The function should leave point at the place to be connected to the
index and it should return nil when it doesn't find another index.
(defvar imenu-prev-index-position-function 'beginning-of-defun (#$ . 5155))
(make-variable-buffer-local 'imenu-prev-index-position-function)
#@244 Function for extracting the index item name, given a position.

This function is called after `imenu-prev-index-position-function'
finds a position for an index item, with point at that position.
It should return the name for that index item.
(defvar imenu-extract-index-name-function nil (#$ . 5676))
(make-variable-buffer-local 'imenu-extract-index-name-function)
#@312 Function to compare string with index item.

This function will be called with two strings, and should return
non-nil if they match.

If nil, comparison is done with `string='.
Set this to some other function for more advanced comparisons,
such as "begins with" or "name matches and number of
arguments match".
(defvar imenu-name-lookup-function nil (#$ . 6049))
(make-variable-buffer-local 'imenu-name-lookup-function)
#@135 The default function called when selecting an Imenu item.
The function in this variable is called when selecting a normal index-item.
(defvar imenu-default-goto-function 'imenu-default-goto-function (#$ . 6476))
(make-variable-buffer-local 'imenu-default-goto-function)
(defalias 'imenu--subalist-p #[(item) "A:\205 \211A@)<\205 \211A@)@\302=?\207" [item x lambda] 3])
(defalias 'imenu-progress-message '(macro . #[(prevpos &optional relpos reverse) "\300\207" [nil] 1]))
#@82 Return the current/previous sexp and its (beginning) location.
Don't move point.
(defalias 'imenu-example--name-and-position #[nil "\212\303\304!\210\203 \305 \202 `\303 \210`\211	{\n+B\207" [imenu-use-markers end beg forward-sexp -1 point-marker] 3 (#$ . 6961)])
(make-obsolete 'imenu-example--name-and-position "use your own function instead." "23.2")
(defalias 'imenu-example--lisp-extract-index-name #[nil "\301 \302\216\303\304!\205 \305\306\307\217*\207" [save-match-data-internal match-data ((byte-code "\301\302\"\207" [save-match-data-internal set-match-data evaporate] 3)) looking-at "(def" nil (byte-code "\302\303!\210\304\305!\210`\304\306!\210`\211{*\207" [end beg down-list 1 forward-sexp 2 -1] 4) ((error))] 3])
(make-obsolete 'imenu-example--lisp-extract-index-name "your own" "23.2")
(defalias 'imenu-example--create-lisp-index #[nil "\306\211\211\211\211db\210\307 \203z \310 \311\216\312\313!\203v \212\314\315!\210\312\316!\2034 \317\320!\210\321 B\202u \312\322!\203F \317\320!\210\321 \fB\202u \312\323!\203l \317\320!\210`Sf\324U\203d \317\325!\210\314\315!\210\317\315!\210\321 \nB\202u \317\320!\210\321 	B)*\202 \203\204 \326B\fB\n\203\216 \327\nB\fB	\203\230 \330	B\fB\f-\207" [prev-pos index-unknown-alist index-type-alist index-var-alist index-alist save-match-data-internal nil beginning-of-defun match-data ((byte-code "\301\302\"\207" [save-match-data-internal set-match-data evaporate] 3)) looking-at "(def" down-list 1 "def\\(var\\|const\\)" forward-sexp 2 imenu-example--name-and-position "def\\(un\\|subst\\|macro\\|advice\\)" "def\\(type\\|struct\\|class\\|ine-condition\\)" 41 -1 "Variables" "Types" "Syntax-unknown"] 5])
(byte-code "\301\302\303\304#\210\305B\306\305!\204 \307\305\310\"\210\301\207" [current-load-list make-obsolete imenu-example--create-lisp-index "your own" "23.2" imenu-example--function-name-regexp-c default-boundp set-default "^[a-zA-Z0-9]+[ 	]?\\([a-zA-Z0-9_*]+[ 	]+\\)?\\([a-zA-Z0-9_*]+[ 	]+\\)?\\([*&]+[ 	]*\\)?\\([a-zA-Z0-9_*]+\\)[ 	]*("] 4)
(defalias 'imenu-example--create-c-index #[(&optional regexp) "\306\211\211eb\210\307 \310\216\311\f\206 \306\312#\2036 \313\314!\210\212\315`\314\"b\210g)\316=\204 \317 \nB\202 *\n\237+\207" [char prev-pos index-alist save-match-data-internal regexp imenu-example--function-name-regexp-c nil match-data ((byte-code "\301\302\"\207" [save-match-data-internal set-match-data evaporate] 3)) re-search-forward t backward-up-list 1 scan-sexps 59 imenu-example--name-and-position] 4])
(byte-code "\301\302\303\304#\210\305B\306\307!\207" [current-load-list make-obsolete imenu-example--create-c-index "your own" "23.2" imenu--rescan-item (lambda (#1=#:defconst-tmp-var) (defconst imenu--rescan-item #1#)) ("*Rescan*" . -99)] 4)
#@663 The buffer index alist computed for this buffer in Imenu.

Simple elements in the alist look like (INDEX-NAME . POSITION).
POSITION is the buffer position of the item; to go to the item
is simply to move point to that position.

Special elements look like (INDEX-NAME POSITION FUNCTION ARGUMENTS...).
To "go to" a special element means applying FUNCTION
to INDEX-NAME, POSITION, and the ARGUMENTS.

A nested sub-alist element looks like (INDEX-NAME SUB-ALIST).
The function `imenu--subalist-p' tests an element and returns t
if it is a sub-alist.

There is one simple element with negative POSITION; selecting that
element recalculates the buffer's index alist.
(defvar imenu--index-alist nil (#$ . 9747))
(make-variable-buffer-local 'imenu--index-alist)
#@65 The latest buffer index alist used to update the menu bar menu.
(defvar imenu--last-menubar-index-alist nil (#$ . 10508))
(byte-code "\301\302!\210\303B\304\303!\204 \305\303\306\"\210\306\207" [current-load-list make-variable-buffer-local imenu--last-menubar-index-alist imenu--history-list default-boundp set-default nil] 3)
(defalias 'imenu--sort-by-name #[(item1 item2) "@	@\231\207" [item1 item2] 2])
(defalias 'imenu--sort-by-position #[(item1 item2) "A	AW\207" [item1 item2] 2])
(defalias 'imenu--relative-position #[(&optional reverse) "`\303 \n\203 	Z\304V\203 	S\305\245\306]\245\202& 	S\305_\306]\245*\207" [total pos reverse buffer-size 50000 100 1] 3])
(defalias 'imenu--split #[(list n) "\306\211\307\f\203) \f\211A@\nB	T\211U\203 \n\237B\307\306\202 \n\2032 \n\237B\237,\207" [list i sublist result remain n nil 0] 5])
(defalias 'imenu--split-menu #[(menulist title) "\306!\307\211>\203 C\310\"\211\307\211\2039 @\311\f!\2032 \f\nB\310\f\"A\211\204  *\203E \312\"GV\203V \313\314\315\"\"\n\237\244+B\207" [menulist tail keep-at-top imenu--rescan-item item #1=#:--cl-dolist-temp-- copy-sequence nil delq imenu--subalist-p sort mapcar #[(menu) "\302\303\211@@)\"B\207" [menu x format "From: %s"] 4] imenu--split imenu-sort-function imenu-max-items title] 6])
(defalias 'imenu--split-submenus #[(alist) "\301\302\"\207" [alist mapcar #[(elt) ":\203 @;\203 A<\203 \301A@\"\207\207" [elt imenu--split-menu] 3]] 3])
(defalias 'imenu--truncate-items #[(menulist) "\301\302\"\207" [menulist mapcar #[(item) "A:\203 \302A!\207	\247\205 @G	V\205 \211@\303	O\240\207" [item imenu-max-item-length imenu--truncate-items 0] 4]] 3])
#@273 Create an index alist for the definitions in the current buffer.
This works by using the hook function `imenu-create-index-function'.
Report an error if the list is empty unless NOERROR is supplied and
non-nil.

See `imenu--index-alist' for the format of the index alist.
(defalias 'imenu--make-index-alist #[(&optional noerror) "\203 	\203 	\203 \306 \nV\204 \212\214~\210 *\307!\210\204+ \f\204+ \310\311!\210\2042 \312CB\207" [imenu--index-alist imenu-auto-rescan imenu-auto-rescan-maxout imenu-create-index-function noerror imenu--rescan-item buffer-size imenu--truncate-items error "No items suitable for an index found in this buffer" nil] 2 (#$ . 12240)])
(defalias 'imenu--cleanup #[(&optional alist) "\203 	B\202 \n\211C\205 \303\304\"\205 \305\207" [alist imenu--cleanup-seen imenu--index-alist mapc #[(item) "\302A!\203 A\303\211\223\207A	>\206 \304!\205 \305A!\207" [item imenu--cleanup-seen markerp nil imenu--subalist-p imenu--cleanup] 3] t] 4])
(defalias 'imenu--create-keymap #[(title alist &optional cmd) "\302\303\304	\"BB\207" [title alist keymap mapcar #[(item) "@@\302!\203 \303@A	#\202' \304\305\306	\203# 	\307DD\202& \307DFBB\207" [item cmd imenu--subalist-p imenu--create-keymap lambda nil (interactive) quote] 8]] 5])
#@65 Check whether the string STR is contained in multi-level ALIST.
(defalias 'imenu--in-alist #[(str alist) "\306\211\211\211\306\f\203H \f@\211A\fA@	<\203. \307	\"\211\203\n \306\211\202 \203; \n\"\202> \n\230\203\n \306\202\n ,\207" [res tail head elt alist str nil imenu--in-alist imenu-name-lookup-function] 5 (#$ . 13531)])
#@432 Alist of syntax table modifiers to use while in `imenu--generic-function'.

The car of the assocs may be either a character or a string and the
cdr is a syntax description appropriate for `modify-syntax-entry'.  For
a string, all the characters in the string get the specified syntax.

This is typically used to give word syntax to characters which
normally have symbol syntax to simplify `imenu-expression'
and speed-up matching.
(defvar imenu-syntax-alist nil (#$ . 13888))
(make-variable-buffer-local 'imenu-syntax-alist)
#@493 Default function to create an index alist of the current buffer.

The most general method is to move point to end of buffer, then repeatedly call
`imenu-prev-index-position-function' and `imenu-extract-index-name-function'.
All the results returned by the latter are gathered into an index alist.
This method is used if those two variables are non-nil.

The alternate method, which is the one most often used, is to call
`imenu--generic-function' with `imenu-generic-expression' as argument.
(defalias 'imenu-default-create-index-function #[nil "\203G 	\203G \306`\306\211db\210 \203D \f`U\203% \307\310\311 \f#\210`\212	 )\n;\203 \n\203< \312 \202= `BB\202 ,\207\203Q \313!\207\307\314!\207" [imenu-prev-index-position-function imenu-extract-index-name-function name prev-pos pos index-alist nil error "Infinite loop at %s:%d: imenu-prev-index-position-function does not move point" buffer-name point-marker imenu--generic-function "This buffer cannot use `imenu-default-create-index-function'" imenu-use-markers imenu-generic-expression] 4 (#$ . 14420)])
#@267 Defines whether `imenu--generic-function' should fold case when matching.

This variable should be set (only) by initialization code
for modes which use `imenu--generic-function'.  If it is not set, but
`font-lock-defaults' is set, then font-lock's setting is used.
(defvar imenu-case-fold-search t (#$ . 15503))
(make-variable-buffer-local 'imenu-case-fold-search)
#@1655 Return an index alist of the current buffer based on PATTERNS.

PATTERNS is an alist with elements that look like this:
 (MENU-TITLE REGEXP INDEX)
or like this:
 (MENU-TITLE REGEXP INDEX FUNCTION ARGUMENTS...)
with zero or more ARGUMENTS.  The former format creates a simple
element in the index alist when it matches; the latter creates a
special element of the form (INDEX-NAME POSITION-MARKER FUNCTION
ARGUMENTS...) with FUNCTION and ARGUMENTS copied from PATTERNS.

MENU-TITLE is a string used as the title for the submenu or nil
if the entries are not nested.

REGEXP is a regexp that should match a construct in the buffer
that is to be displayed in the menu; i.e., function or variable
definitions, etc.  It contains a substring which is the name to
appear in the menu.  See the info section on Regexps for more
information.  REGEXP may also be a function, called without
arguments.  It is expected to search backwards.  It shall return
true and set `match-data' if it finds another element.

INDEX points to the substring in REGEXP that contains the
name (of the function, variable or type) that is to appear in the
menu.

The variable `imenu-case-fold-search' determines whether or not the
regexp matches are case sensitive, and `imenu-syntax-alist' can be
used to alter the syntax table for the search.

See `lisp-imenu-generic-expression' for an example of PATTERNS.

Returns an index of the current buffer as an alist.  The elements in
the alist look like:
 (INDEX-NAME . INDEX-POSITION)
or like:
 (INDEX-NAME INDEX-POSITION FUNCTION ARGUMENTS...)
They may also be nested index alists like:
 (INDEX-NAME . INDEX-ALIST)
depending on PATTERNS.
(defalias 'imenu--generic-function #[(patterns) "\306C\307\310\300!\204 \310\301!\204 \202 \311	8\312 \313\312 !\n !\307\"\211#\203X #@\211\"@\247\203H \314\"@\"A\f#\210\202O \315\316\"@\"\210#A\211#\2040 *db\210\307\216\317 $\320\216\321\f!\210%\307&\211'\203/'@\211&@&A@\311&8\322&8\323&\233\307\211()*+,-.db\210\324-!\203\252 - \202\260 \325-\307\326#\203$\327\224\327\225U\204$`),\224b\210\330 \210`(\331.!\"\204\332 .C!B!/\203\345 \332(!(+\203\371 \333,!(+E*\244\202 \333,!(B\331.!\"0\21110A\235\204010AB\241\210*)b\210\202\235 .'A\211'\204s *\321!\210+!\3071\2112\203]2@\2111<\203T1\3341A\335\"\241\2102A\2112\204@*\307!\2363\3363\336\306!\"\"3A\244.\207" [imenu-case-fold-search font-lock-defaults imenu-syntax-alist slist table old-table dummy nil local-variable-p 2 syntax-table copy-syntax-table modify-syntax-entry mapc #[(c) "\303	A\n#\207" [c syn table modify-syntax-entry] 4] match-data ((byte-code "\301\302\"\207" [save-match-data-internal set-match-data evaporate] 3)) set-syntax-table 3 4 functionp re-search-backward t 0 beginning-of-line assoc copy-marker match-string-no-properties sort imenu--sort-by-position delq case-fold-search prev-pos index-alist syn #1=#:--cl-dolist-temp-- save-match-data-internal patterns pat #2=#:--cl-dolist-temp-- beg start rest function index regexp menu-title imenu-use-markers menu item #3=#:--cl-dolist-temp-- main-element] 8 (#$ . 15877)])
#@67 Fuzzily find an item based on GUESS inside the alist COMPLETIONS.
(defalias 'imenu-find-default #[(guess completions) "\300\301\215\207" [found (byte-code "\306\307	\n\"\203 	\202Y \310\311	!\312Q\310\311	!P\311	!\312P\311	!F\313\211\203W \f@\n\313\211\203O @\314@\"\203F \315\316@\"\210A\211\2044 *\fA\211\204( *\313)\207" [case-fold-search guess completions re #1=#:--cl-dolist-temp-- x t assoc "\\`" regexp-quote "\\'" nil string-match throw found #2=#:--cl-dolist-temp--] 6)] 2 (#$ . 19031)])
#@124 Let the user select from INDEX-ALIST in a completion buffer with PROMPT.

Return one of the entries in index-alist or nil.
(defalias 'imenu--completion-buffer #[(index-alist &optional prompt) "\306\307!\310\204\f 	\202 \311\312	\"\211;\203! \313\f\n\"\206  \f\204: \f\2038 \314\f\n\"\2038 \315\316\f\"\202: \317\204H \320\321\322\"\210\323\n\310\324\310\325\f&)\f;\205m \326\f\n\"\327!\203l \330A\"\202m +\207" [imenu-space-replacement index-alist prepared-index-alist choice name prompt thing-at-point symbol nil mapcar #[(item) "\302\303\304H	@#	AB\207" [imenu-space-replacement item subst-char-in-string 32 0] 4] imenu-find-default imenu--in-alist format "Index item (default %s): " "Index item: " add-hook minibuffer-setup-hook minibuffer-completion-help completing-read t imenu--history-list assoc imenu--subalist-p imenu--completion-buffer imenu-eager-completion-buffer] 9 (#$ . 19554)])
#@198 Let the user select from a buffer index from a mouse menu.

INDEX-ALIST is the buffer index and EVENT is a mouse event.

Returns t for rescan and otherwise an element or subelement of INDEX-ALIST.
(defalias 'imenu--mouse-menu #[(index-alist event &optional title) "\305!\306	\206\f \307 \"\310\n@\311\nAGW\203 \n\202  \nA@A\"\312\f\"*\207" [index-alist title menu map event imenu--split-submenus imenu--split-menu buffer-name imenu--create-keymap 1 popup-menu] 4 (#$ . 20479)])
#@599 Let the user select from a buffer index and return the chosen index.

If the user originally activated this function with the mouse, a mouse
menu is used.  Otherwise a completion buffer is used and the user is
prompted with PROMPT.

If you call this function with index alist ALIST, then it lets the user
select from ALIST.

With no index alist ALIST, it calls `imenu--make-index-alist' to
create the index alist.

If `imenu-use-popup-menu' is nil, then the completion buffer
is always used, no matter if the mouse was used or not.

The returned value is of the form (INDEX-NAME . INDEX-POSITION).
(defalias 'imenu-choose-buffer-index #[(&optional prompt alist) "\306<\307\n\203= \310\232\204= \211:\203 \fA@\202$ \311 `\312\313F)\211@)\314!\204< \203< \315!\210)	\307=\203\201 \203M \202O \316 \203g \307=\204` \n\203g \317\"\202l \320\"\211\232\203= \321 \203= \307\306\202= 	+\207" [last-nonmenu-event result mouse-triggered index-alist event position nil t (menu-bar) selected-window (0 . 0) 0 framep select-window imenu--make-index-alist imenu--mouse-menu imenu--completion-buffer imenu--cleanup window alist imenu-use-popup-menu prompt imenu--rescan-item imenu--index-alist] 5 (#$ . 20971)])
#@157 Add an `imenu' entry to the menu bar for the current buffer.
NAME is a string used to name the menu bar item.
See the command `imenu' for more information.
(defalias 'imenu-add-to-menubar #[(name) "\203 	\204 \n\204 \306=\2043 \307 \310\f\311 \"\210\312\313\f\314\315\307\316!E#\210\317\f!\210\320\321\322\")\207\323\324\325!\"\207" [imenu-prev-index-position-function imenu-extract-index-name-function imenu-generic-expression imenu-create-index-function newmap imenu--last-menubar-index-alist imenu-default-create-index-function make-sparse-keymap set-keymap-parent current-local-map nil define-key [menu-bar index] menu-item "Imenu" use-local-map add-hook menu-bar-update-hook imenu-update-menubar error "The mode `%s' does not support Imenu" format-mode-line name mode-name] 7 (#$ . 22213) "sImenu menu item name: "])
#@143 Add an Imenu "Index" entry on the menu bar for the current buffer.

A trivial interface to `imenu-add-to-menubar' suitable for use in a hook.
(defalias 'imenu-add-menubar-index #[nil "\300\301!\207" [imenu-add-to-menubar "Index"] 2 (#$ . 23053) nil])
(byte-code "\301B\302\301!\204 \303\301\304\"\210\304\207" [current-load-list imenu-buffer-menubar default-boundp set-default nil] 3)
#@90 The value of (buffer-chars-modified-tick) as of the last call
to `imenu-update-menubar'.
(defvar imenu-menubar-modified-tick 0 (#$ . 23447))
(make-variable-buffer-local 'imenu-menubar-modified-tick)
(defalias 'imenu-update-menubar #[nil "\306 \205Y \307\310\306 \311\"!\205Y \312 U?\205Y \312 \313\314!\211\n\232?\205X \315\211\211	\316	!\317	\320 \"\321@\322AGW\203F \202I A@A\323#\310\306 \324\"\211\fA\241+)\207" [imenu-menubar-modified-tick index-alist imenu--last-menubar-index-alist old menu1 menu current-local-map keymapp lookup-key [menu-bar index] buffer-chars-modified-tick imenu--make-index-alist t nil imenu--split-submenus imenu--split-menu buffer-name imenu--create-keymap 1 imenu--menubar-select [menu-bar index]] 5])
#@71 Use Imenu to select the function or variable named in this menu ITEM.
(defalias 'imenu--menubar-select #[(item) "	\232\203 \305 \210\306\307\211\310 \210\311\207\312!\210\307\207" [item imenu--rescan-item imenu-menubar-modified-tick imenu--index-alist imenu--last-menubar-index-alist imenu--cleanup -1 nil imenu-update-menubar t imenu] 3 (#$ . 24202)])
#@209 Move to the given position.

NAME is ignored.  POSITION is where to move.  REST is also ignored.
The ignored args just make this function have the same interface as a
function placed in a special index-item.
(defalias 'imenu-default-goto-function #[(name position &optional rest) "eW\204\f dV\203 ~\210b\207" [position] 2 (#$ . 24568)])
#@163 Jump to a place in the buffer chosen using a buffer menu or mouse menu.
INDEX-ITEM specifies the position.  See `imenu-choose-buffer-index'
for more information.
(defalias 'imenu #[(index-item) ";\203 \306\307 \"\205K \310 \210A<\211\203  \3118\202! \n	\203/ \211A@)\2021 A	\205< \211AA)\312@$\210,\313\314!\207" [index-item is-special-item imenu-default-goto-function function x position assoc imenu--make-index-alist push-mark 2 apply run-hooks imenu-after-jump-hook rest] 6 (#$ . 24916) (list (imenu-choose-buffer-index))])
(byte-code "\302\303\211\203 	@\304\305\"\210	A\211\204 *\306\307!\207" [mess #:--cl-dolist-temp-- ("^No items suitable for an index found in this buffer$" "^This buffer cannot use `imenu-default-create-index-function'$" "^The mode `.*' does not support Imenu$") nil add-to-list debug-ignored-errors provide imenu] 4)
