Files
emacs/lisp
Stefan Monnier f131e396f8 * lisp/cedet/mode-local.el: Clean up name space
Mostly renaming functions by adding `mode-local--` to their name
and leaving an obsolete alias behind, just in case.

(define-child-mode): Make obsolete.
(mode-local--set-parent): Rename from set-mode-local-parent.
(mode-local--new-bindings): Rename from new-mode-local-bindings.
Use `obarray-make`.
(mode-local--activate-bindings): Rename from activate-mode-local-bindings.
(mode-local--deactivate-bindings): Rename from
deactivate-mode-local-bindings.
(make-obsolete-overload): Rename properties with a `mode-local--` prefix.
Adjust all users.
(mode-local--overload-obsoleted-by): Rename from overload-obsoleted-by.
(mode-local--overload-that-obsolete): Rename from overload-that-obsolete.
(mode-local--function-overload-p): Rename from function-overload-p.
(mode-local-read-function): Mark obsolete.
(mode-local--overload-docstring-extension): Rename from
overload-docstring-extension.
(mode-local--describe-overload): Rename from describe-mode-local-overload.

* lisp/cedet/semantic/fw.el (semantic-install-function-overrides):
Remove unused `mode` argument.

* lisp/cedet/semantic/grammar-wy.el (semantic-grammar-wy--install-parser):
* lisp/cedet/semantic/bovine/grammar.el (bovine-grammar-mode):
* lisp/cedet/semantic/texi.el (semantic-default-texi-setup):
* lisp/cedet/semantic/wisent/grammar.el (wisent-grammar-setupcode-builder)
(wisent-grammar-mode):
* lisp/cedet/semantic/html.el (semantic-default-html-setup):
Make the `semantic-` prefix explicit to ease grep search.
(html-helper-mode): Remove obsolete setting.

* lisp/cedet/semantic/wisent/javascript.el: Fix js-mode/javascript-mode
mixup so we don't need define-child-mode any more.
(semantic-get-local-variables, semantic-ctxt-current-symbol)
(semantic-tag-protection, semantic-analyze-scope-calculate-access):
Use `js-mode` rather than `javascript-mode` as the mode name since
that's the real mode's name.

* lisp/cedet/semantic/wisent/python.el (python-2-mode, python-3-mode):
Remove child declaration for non-existing modes.

* lisp/cedet/srecode/map.el (srecode-map-validate-file-for-mode): Simplify.
2019-10-24 23:06:23 -04:00
..
2019-09-28 17:08:19 +03:00
2019-10-22 09:36:17 +02:00
2019-07-06 12:51:30 -07:00
2019-10-14 14:18:39 +02:00
2019-09-27 00:33:45 +02:00
2019-08-05 18:37:29 -07:00
2019-09-27 17:49:37 +02:00
2019-10-17 15:25:07 +02:00
2019-08-05 18:37:29 -07:00
2019-07-20 16:46:04 +01:00
2019-08-01 17:04:53 +03:00
2019-10-14 14:18:39 +02:00
2019-08-01 17:04:53 +03:00
2019-09-20 15:01:52 +02:00
2019-08-17 15:43:05 -07:00
2019-10-01 23:15:03 +03:00
2019-09-19 14:39:34 +02:00
2019-09-09 01:13:54 +02:00
2019-10-09 15:16:07 +02:00
2019-09-16 18:00:59 -07:00
2019-10-16 04:44:22 +02:00
2019-08-23 02:20:54 +02:00
2019-10-13 05:08:37 +02:00
2019-08-05 18:37:29 -07:00
2019-08-16 16:27:27 -07:00
2019-10-11 14:17:08 +02:00
2019-10-01 23:15:03 +03: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.