Files
emacs/lisp
F. Jason Park 2d876a4ca9 Convert ERC's Imenu integration into proper module
* lisp/erc/erc-goodies.el: Don't add Imenu hooks to `erc-mode-hook' at
top level.  Remove autoload for `erc-create-imenu-index' because it
already exists in the `erc-imenu' library.
(erc-imenu-setup): Move to the erc-imenu library.
* lisp/erc/erc-imenu.el (erc-unfill-notice): Allow modifications to
read-only text.  Thanks to Yusef Aslam for reporting this bug.
(erc-imenu-setup): Move here from goodies.
(erc-imenu--create-index-function): New helper var to hold previous
local value of `imenu-create-index-function'.  Perhaps advice should
be used instead, but a cursory search of the Emacs code base reveals
no such usage.
(erc-imenu-mode, erc-imenu-enable, erc-imenu-disable): Create "new"
ERC module for Imenu integration.
* lisp/erc/erc.el (erc-modules): Add `imenu' to default value and
create widget menu item.  Update package-version.
* test/lisp/erc/erc-tests.el (erc-tests--modules): Add
`imenu'.  (Bug#60954)
2023-04-08 14:23:51 -07:00
..
2023-04-06 14:38:20 -04:00
2023-04-06 14:38:20 -04:00
2023-04-02 23:03:32 -04:00
2023-03-20 06:30:39 +01:00
2023-01-17 06:30:08 +01:00
2023-03-01 06:30:20 +01:00
2023-03-20 06:30:32 +01:00
2023-02-03 06:30:24 +01:00
2023-04-03 00:33:03 +01:00
2023-02-24 06:30:11 +01:00
2023-02-03 18:03:18 +01:00
2023-03-09 12:04:52 +02:00
2023-04-07 12:57:59 +01:00
2023-02-17 16:20:45 +01:00
2023-03-27 17:16:58 -04:00
2023-03-29 14:56:20 +03:00
2023-02-18 10:58:00 +02:00
2023-04-08 11:51:43 +01:00
2023-04-06 14:38:20 -04:00
2023-02-05 18:52:59 +02:00
2023-03-20 09:47:32 +01:00
2023-04-01 05:10:48 +02:00
2023-03-02 20:45:02 +08:00
2023-04-06 14:38:13 -04:00
2023-02-18 10:45:46 +01:00
2023-04-06 14:38:20 -04:00
2023-02-03 06:30:24 +01:00
2023-03-30 21:55:22 -07:00
2023-01-06 10:06:25 +01:00
2023-03-29 06:30:09 +02:00

This directory contains source code for the parts of Emacs that are
written in Emacs Lisp.  *.el files are Emacs Lisp source, and the
corresponding *.elc files are byte-compiled versions.  Byte-compiled
files are architecture-independent.

The term subdirectory contains Lisp files that customize Emacs for
certain terminal types.  When Emacs starts, it checks the TERM
environment variable to get the terminal type and loads
'term/${TERM}.el' if it exists.

The other subdirectories hold Lisp packages grouped by their general
purpose.