Files
emacs/lisp
Mattias Engdegård bb4209a5a5 Fix xref elisp identifier namespace mistake
Pressing `M-.` on ALPHA in

  (let ((ALPHA BETA)) ...)

would incorrectly search for ALPHA as a function rather than a variable.

* lisp/progmodes/elisp-mode.el (elisp--xref-infer-namespace): Fix logic.
* test/lisp/progmodes/elisp-mode-tests.el
(elisp-mode-infer-namespace): Add test case.
2021-10-18 17:26:45 +02:00
..
2021-10-11 10:29:35 -04:00
2021-10-16 14:31:26 +02:00
2021-10-14 14:32:47 +02:00
2021-10-05 09:22:57 +02:00
2021-10-16 14:01:34 -04:00
2021-10-14 02:29:27 +03:00
2021-09-23 00:18:21 +02:00
2021-09-12 18:36:49 +02:00
2021-09-24 19:41:03 +02:00
2021-09-16 15:42:44 +02:00
2021-09-03 13:05:32 +02:00
2021-09-03 13:05:32 +02:00
2021-10-05 09:42:28 +02:00
2021-09-30 20:05:09 +03:00
2021-10-05 15:20:46 +02:00
2021-09-13 06:44:52 +02:00
2021-09-24 19:41:03 +02:00
2021-09-12 18:36:49 +02:00
2021-09-25 20:25:01 +02:00
2021-10-01 06:18:45 -07:00
2021-10-02 11:06:18 +03:00
2021-09-23 22:57:53 +02:00
2021-10-01 08:33:32 -07:00
2021-09-29 03:48:27 +03:00
2021-09-16 15:42:44 +02:00
2021-09-16 15:42:44 +02:00
2021-09-14 07:57:14 +02:00
2021-09-25 20:25:01 +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.