1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00
emacs/lisp
Stefan Kangas 3d3c109460 Make font-lock face variables obsolete
Using these variables as "another mechanism for changing face
appearance" never really worked, since mode authors were free to use the
face instead of the variable (i.e. quoting the symbol).  This means that
when users customized the variables, it would change its appearance only
in some cases, which is a rather surprising interface.

Indeed, it turns out that some modes have not always been consistent,
and mixed using the variable and the face, increasing the confusion even
further.  Thus, the only thing users could rely on to always work was to
leave the variables at their default value, and to customize the face.

We now recommend customizing the face, and are obsoleting these
variables.  This will lead to some minor code-churn, but it is believed
that it will be ultimately worth it.  To fix existing Lisp code, you
should typically only need to quote the symbol, as this commit shows.

It might be the case that we will have to keep the obsolete variables,
that have been with us since Emacs 19, around for a longer time-period
than normal, to allow package authors to adapt.

* lisp/font-lock.el (font-lock-comment-face)
(font-lock-comment-delimiter-face, font-lock-string-face)
(font-lock-doc-face, font-lock-doc-markup-face, font-lock-keyword-face)
(font-lock-builtin-face, font-lock-function-name-face)
(font-lock-variable-name-face, font-lock-type-face)
(font-lock-constant-face, font-lock-warning-face)
(font-lock-negation-char-face, font-lock-preprocessor-face): Make face
variables obsolete in favor of customizing the faces directly
instead.  (Bug#71469)

* doc/lispref/modes.texi (Faces for Font Lock): Don't document above
obsolete variables.

* lisp/cedet/data-debug.el (data-debug-insert-hash-table)
(data-debug-insert-widget-properties, data-debug-insert-string)
(data-debug-insert-number):
* lisp/emacs-lisp/lisp-mode.el (elisp--font-lock-backslash)
(lisp-font-lock-syntactic-face-function):
* lisp/emacs-lisp/package.el (describe-package-1):
* lisp/generic-x.el (rc-generic-mode, rul-generic-mode):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/progmodes/cc-fonts.el (c-font-lock-invalid-single-quotes)
(c-maybe-font-lock-wrong-style-comments, c-font-lock-declarators)
(c-font-lock-c++-lambda-captures, c-font-lock-c++-modules):
* lisp/progmodes/cperl-mode.el (cperl-find-sub-attrs)
(cperl-look-at-leading-count, cperl-process-here-doc)
(cperl-find-pods-heres):
* lisp/progmodes/gdb-mi.el (gdb-init-1, gdb-update, gdb-running)
(gdb-starting, gdb-stopped, gdb-internals)
(gdb-breakpoints--add-breakpoint-row, gdb-locals-handler-custom)
(gdb-registers-handler-custom, gdb-get-source-file):
* lisp/progmodes/js.el (js--font-lock-keywords-1)
(js--font-lock-keywords-2, js-font-lock-syntactic-face-function):
* lisp/progmodes/lua-ts-mode.el (lua-ts--comment-font-lock):
* lisp/progmodes/meta-mode.el (meta-indent-in-string-p):
* lisp/progmodes/prolog.el (prolog-font-lock-keywords):
* lisp/progmodes/python.el (python-font-lock-syntactic-face-function):
* lisp/progmodes/ruby-ts-mode.el (ruby-ts--comment-font-lock):
* lisp/progmodes/sh-script.el (sh-font-lock-syntactic-face-function):
* lisp/textmodes/tex-mode.el (doctex-font-lock-syntactic-face-function):
* test/lisp/faces-tests.el (faces--test-color-at-point):
* test/lisp/progmodes/cperl-mode-tests.el (cperl-test-extra-delimiters)
(cperl-test-bug-47112, cperl-test-bug-65834, cperl-test-bug-66145)
(cperl-test-bug-66161, cperl-test-bug-69604):
* test/lisp/progmodes/python-tests.el
(python-ts-mode-compound-keywords-face)
(python-ts-mode-named-assignment-face-1)
(python-ts-mode-assignment-face-2, python-ts-mode-nested-types-face-1)
(python-ts-mode-union-types-face-1, python-ts-mode-union-types-face-2)
(python-ts-mode-types-face-1, python-ts-mode-types-face-2)
(python-ts-mode-types-face-3, python-ts-mode-isinstance-type-face-1)
(python-ts-mode-isinstance-type-face-2)
(python-ts-mode-isinstance-type-face-3)
(python-ts-mode-superclass-type-face, python-ts-mode-class-patterns-face)
(python-ts-mode-dotted-decorator-face-1)
(python-ts-mode-dotted-decorator-face-2)
(python-ts-mode-builtin-call-face)
(python-ts-mode-interpolation-nested-string)
(python-ts-mode-level-fontification-wo-interpolation)
(python-ts-mode-disabled-string-interpolation)
(python-ts-mode-interpolation-doc-string):
* test/lisp/progmodes/ruby-mode-tests.el
(ruby-heredoc-font-lock, ruby-heredoc-highlights-interpolations)
(ruby-exit!-font-lock, ruby-regexp-interpolation-is-highlighted)
(ruby-recognize-symbols-starting-with-at-character)
(ruby-hash-character-not-interpolation)
(ruby-interpolation-suppresses-quotes-inside)
(ruby-interpolation-suppresses-one-double-quote)
(ruby-interpolation-inside-percent-literal)
(ruby-interpolation-inside-percent-literal-with-paren)
(ruby-interpolation-inside-another-interpolation)
(ruby-interpolation-inside-double-quoted-percent-literals)
(ruby-no-interpolation-in-single-quoted-literals):
Don't use above obsolete variables.
* lisp/progmodes/cc-fonts.el (font-lock-constant-face): Don't
declare now-unused variable.
2024-12-18 03:48:35 +01:00
..
calc * lisp/calc/calc-ext.el (math-approx-sqrt-e): Doc fix (bug#73817). 2024-10-15 16:16:25 +02:00
calendar Use `completion-table-with-metadata' (bug#74865) 2024-12-16 20:19:49 +02:00
cedet Make font-lock face variables obsolete 2024-12-18 03:48:35 +01:00
emacs-lisp Make font-lock face variables obsolete 2024-12-18 03:48:35 +01:00
emulation Prefer defcustom :local specifier 2024-10-04 01:38:11 +02:00
erc ; Slightly improve test case for erc-parse-modes 2024-12-09 11:42:45 -08:00
eshell ; Fix documentation of a recent change in Eshell 2024-12-12 07:40:32 +02:00
gnus Merge from origin/emacs-30 2024-12-14 09:39:59 -05:00
image image-dired: Don't croak on file names with regexp characters 2024-12-15 19:55:24 +01:00
international Use `completion-table-with-metadata' (bug#74865) 2024-12-16 20:19:49 +02:00
language * lisp/language/misc-lang.el ("Tifinagh"): Fix `language-info-alist'. 2024-07-28 09:44:44 +03:00
leim/quail Enable guidance for Northern Iroquoian input methods 2024-11-07 14:26:07 +01:00
mail * lisp/mail/sendmail.el (mail-citation-prefix-regexp): Fix bug#24081 2024-12-17 17:07:45 -05:00
mh-e Prefer defcustom :local specifier 2024-10-04 01:38:11 +02:00
net Use `completion-table-with-metadata' (bug#74865) 2024-12-16 20:19:49 +02:00
nxml Don't produce invalid XML with multi-line commenting style 2024-07-25 10:48:03 +02:00
obsolete ; Fix typos 2024-11-21 10:06:19 +01:00
org Make font-lock face variables obsolete 2024-12-18 03:48:35 +01:00
play Prefer defcustom :local specifier 2024-10-04 01:38:11 +02:00
progmodes Make font-lock face variables obsolete 2024-12-18 03:48:35 +01:00
term Enable xterm-mouse-mode by default in xterm 2024-12-12 12:51:13 +02:00
textmodes Make font-lock face variables obsolete 2024-12-18 03:48:35 +01:00
url Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
use-package Merge from origin/emacs-30 2024-09-07 06:25:15 -04:00
vc Make VC exclude Repo directories 2024-12-16 21:58:56 +01:00
abbrev.el Add obarray-clear and use it 2024-02-23 13:02:27 +01:00
align.el ; * lisp/align.el: Remove unnecessary :group keywords. (bug#70262) 2024-04-08 14:21:15 +02:00
allout-widgets.el Prefer defcustom :local specifier in allout 2024-10-01 23:56:06 +02:00
allout.el Prefer defcustom :local specifier in allout 2024-10-01 23:56:06 +02:00
ansi-color.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
ansi-osc.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
apropos.el apropos-library: Don't list generic functions as features 2024-12-10 03:40:14 +02:00
arc-mode.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
array.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
auth-source-pass.el Improve robustness of auth-source-pass.el 2024-11-23 12:49:56 +01:00
auth-source.el * lisp/auth-source.el (read-passwd): Remove entry from `post-command-hook'. 2024-10-19 12:36:32 +02:00
autoinsert.el Complete to "nil" in directory local variables skeleton 2024-06-29 21:59:39 +02:00
autorevert.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
avoid.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
battery.el Minor adjustments to battery.el on Android 2024-06-16 15:28:54 +08:00
bind-key.el (help-fns-function-name): New function 2024-03-21 19:40:20 -04:00
bindings.el Add file/buffer-to-register (Bug#73308) 2024-10-05 13:06:49 +03:00
bookmark.el Use `completion-table-with-metadata' (bug#74865) 2024-12-16 20:19:49 +02:00
bs.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
buff-menu.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
button.el Remove buttons when disabling 'button-mode' 2024-10-11 12:14:42 +02:00
calculator.el Don't start docstrings with "This function" 2024-11-01 23:56:12 +01:00
case-table.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
cdl.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
ChangeLog.1 ; Fix typos 2024-06-23 16:40:06 +02:00
ChangeLog.2 ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
ChangeLog.3 Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ChangeLog.4 Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ChangeLog.5 ; Fix typos 2024-07-18 11:46:50 +02:00
ChangeLog.6 ; Fix typos 2024-07-18 11:46:50 +02:00
ChangeLog.7 Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ChangeLog.8 ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
ChangeLog.9 ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
ChangeLog.10 ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
ChangeLog.11 ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
ChangeLog.12 ; Fix typos 2024-07-18 11:46:50 +02:00
ChangeLog.13 Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ChangeLog.14 Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ChangeLog.15 Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ChangeLog.16 Update Arni Magnusson's email address 2024-10-05 02:30:41 +02:00
ChangeLog.17 Update Arni Magnusson's email address 2024-10-05 02:30:41 +02:00
char-fold.el Avoid defconst for vars which we modify 2024-01-04 18:44:43 -05:00
chistory.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
cmuscheme.el Remove obsolete 'display-comint-buffer-action' (bug#74361) 2024-12-04 09:40:33 +02:00
color.el ; Fix last changes 2024-11-09 12:45:14 +02:00
comint.el * lisp/comint.el (comint-complete-input-ring): New command (bug#74694). 2024-12-16 20:12:25 +02:00
completion-preview.el Give Completion Preview bindings higher precedence 2024-11-23 14:56:50 +01:00
completion.el ; Fix typos 2024-07-18 11:46:50 +02:00
composite.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
COPYING
cus-dep.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
cus-edit.el * cus-face.el: Provide completion for font families (bug#74362) 2024-11-17 17:49:49 -05:00
cus-face.el * cus-face.el: Provide completion for font families (bug#74362) 2024-11-17 17:49:49 -05:00
cus-start.el Maintain relationship between tool bar image and default font width 2024-06-03 16:36:29 +08:00
cus-theme.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
custom.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
dabbrev.el Prevent "Selecting deleted buffer" error with dabbrev-expand 2024-11-30 23:28:06 +01:00
delim-col.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
delsel.el Add delete-selection-local-mode. 2024-10-26 14:52:29 -04:00
descr-text.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
desktop.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
dframe.el Improve treatment of aborted touch events in Speedbar and elsewhere 2024-04-09 10:39:36 +08:00
dired-aux.el ; * lisp/dired-aux.el (shell-command-guess-open): Fix :type (bug#74720). 2024-12-07 06:50:27 -05:00
dired-x.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
dired.el * lisp/dired.el (dired-summary): Use substitute-command-keys. 2024-12-16 22:13:28 +01:00
dirtrack.el Prefer defcustom :local specifier 2024-10-04 01:38:11 +02:00
disp-table.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
display-fill-column-indicator.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
display-line-numbers.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
dnd.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
doc-view.el Make djvused emit UTF-8 encoded text 2024-10-18 08:06:40 +02:00
dom.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
dos-fns.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
dos-vars.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
dos-w32.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
double.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
dynamic-setting.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ebuff-menu.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
echistory.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
ecomplete.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
editorconfig-conf-mode.el Add missing builtin package declarations 2024-06-24 20:34:53 +02:00
editorconfig-core-handle.el editorconfig-core-handle.el: Fix regressions in fnmatch handling 2024-07-08 17:09:31 -04:00
editorconfig-core.el Add missing builtin package declarations 2024-06-24 20:34:53 +02:00
editorconfig-fnmatch.el Add missing builtin package declarations 2024-06-24 20:34:53 +02:00
editorconfig-tools.el Add missing builtin package declarations 2024-06-24 20:34:53 +02:00
editorconfig.el Merge from origin/emacs-30 2024-10-27 08:23:06 -04:00
edmacro.el Merge branch 'mouse-wheel-buttons' 2024-04-09 10:28:05 -04:00
ehelp.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
elec-pair.el Teach Electric Pair mode about prefix arguments 2024-09-22 10:10:35 +02:00
electric.el Restore comment/string check for 'electric-layout-mode' 2024-10-05 13:11:04 +03:00
elide-head.el Update FSF's address 2024-09-02 21:02:09 +02:00
emacs-lock.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
env.el Change 'type' declaration to 'ftype' 2024-05-14 11:17:25 +02:00
epa-dired.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
epa-file.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
epa-hook.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
epa-ks.el ; * admin/MAINTAINERS: Note what I maintain 2024-07-27 11:01:36 +02:00
epa-mail.el ; Improve documentation of 'epa-mail-verify' 2024-12-04 15:21:13 +02:00
epa.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
epg-config.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
epg.el * lisp/epg.el (epg--start): Don't convert EOL on encoding (bug#72542). 2024-08-10 10:54:18 +03:00
expand.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
external-completion.el Standardize possessive apostrophe usage in manuals, docs, and comments 2024-07-25 03:35:18 +02:00
ezimage.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
face-remap.el ; * lisp/face-remap.el (text-scale-adjust): Doc fix. 2024-05-21 15:40:51 +03:00
facemenu.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
faces.el Use `completion-table-with-metadata' (bug#74865) 2024-12-16 20:19:49 +02:00
ffap.el New customization variable `completion-eager-display' 2024-12-14 14:38:29 +02:00
filecache.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
fileloop.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
filenotify.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
files-x.el Merge from origin/emacs-30 2024-11-09 07:35:12 -05:00
files.el Don't use obsolete mode delhpi-mode 2024-12-13 01:13:52 +01:00
filesets.el ; * lisp/filesets.el (filesets-homepage): Fix URL. 2024-09-26 02:10:16 +02:00
find-cmd.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
find-dired.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
find-file.el Prefer defcustom :local specifier 2024-10-04 01:38:11 +02:00
find-lisp.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
finder.el Delete defgroup "wp" obsolete since Emacs 26 2024-07-24 23:53:13 +02:00
flow-ctrl.el Miscellaneous checkdoc fixes 2024-07-20 02:42:08 +02:00
foldout.el Add foldout command for widening to current fold 2024-10-12 14:52:32 +03:00
follow.el * lisp/follow.el: Put property 'isearch-scroll' on 'follow-recenter'. 2024-03-07 09:56:02 +02:00
font-core.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
font-lock.el Make font-lock face variables obsolete 2024-12-18 03:48:35 +01:00
format-spec.el Clarify description of format-spec truncation 2024-03-21 10:43:17 +01:00
format.el * lisp/format.el (format-alist): Make 'duden' format write-only. 2024-08-06 12:05:31 +02:00
forms.el Miscellaneous checkdoc fixes 2024-07-20 02:42:08 +02:00
frame.el ; * lisp/frame.el (clone-frame): Doc fix (bug#74750). 2024-12-17 13:59:08 +02:00
frameset.el Standardize possessive apostrophe usage in manuals, docs, and comments 2024-07-25 03:35:18 +02:00
fringe.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
generic-x.el Make font-lock face variables obsolete 2024-12-18 03:48:35 +01:00
help-at-pt.el ; * lisp/help-at-pt.el (display-local-help): Fix last change. 2024-12-05 11:21:51 +01:00
help-fns.el * lisp/help-fns.el (help-fns-short-filename): Skip relative file names 2024-12-13 17:47:22 -05:00
help-macro.el * lisp/help-macro.el: Add 'help-for-help-use-variable-pitch' option. 2024-08-08 13:30:55 +03:00
help-mode.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
help.el Bind inhibit-read-only to t in substitute-command-keys 2024-12-16 21:43:29 +01:00
hex-util.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
hexl.el * lisp/hexl.el (hexl-mode): Fix doc string (bug#70163). 2024-04-05 08:45:44 +03:00
hfy-cmap.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
hi-lock.el * lisp/hi-lock.el (hi-lock-revert-buffer-rehighlight): Fix lighter. 2024-09-25 09:57:16 +03:00
hilit-chg.el Capitalize "Dired" and "Lisp" in docstrings 2024-07-10 00:36:19 +02:00
hippie-exp.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
hl-line.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
htmlfontify.el Fix :type of some user options 2024-09-08 19:17:48 +03:00
ibuf-ext.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
ibuf-macs.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
ibuffer.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
icomplete.el Merge from origin/emacs-30 2024-10-18 17:56:08 +02:00
ido.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ielm.el Add support for reading/writing IELM input history (bug#67000) 2024-02-15 08:46:28 +01:00
iimage.el New property 'context-menu-functions' (bug#62250) 2024-03-05 18:50:51 +02:00
image-file.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
image-mode.el Correctly update image properties 2024-10-12 14:36:29 +03:00
image.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
imenu.el New customization variable `completion-eager-display' 2024-12-14 14:38:29 +02:00
indent-aux.el ; Add 2024 to copyright years 2024-01-02 10:30:05 +08:00
indent.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
info-look.el Update info-lookup's support for 'latex-mode' 2024-12-07 11:04:44 +02:00
info-xref.el * lisp/info-xref.el (info-xref-subfile-p): Avoid false positives. (Bug#68428) 2024-01-15 16:55:27 +01:00
info.el Prefer defvar-keymap in info.el 2024-12-16 00:18:18 +01:00
informat.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
isearch.el * lisp/isearch.el: Exit Isearch after deleting the frame (bug#41338). 2024-07-23 21:00:23 +03:00
isearchb.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
jit-lock.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
jka-cmpr-hook.el Add suffixes individually and use minor mode directly 2024-10-16 17:59:58 -04:00
jka-compr.el Unconditionally prefer built-in decompression functions on Android 2024-06-14 15:12:05 +08:00
json.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
jsonrpc.el Merge from origin/emacs-30 2024-11-30 06:35:16 -05:00
kermit.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
keymap.el Rename the property 'repeat-continue-only' to 'repeat-continue' 2024-12-17 20:58:09 +02:00
kmacro.el Fix formatting of long keyboard macros by 'list-keyboard-macros'. 2024-10-14 14:37:39 +03:00
ldefs-boot.el ; Fix bootstrap (Bug#74490) 2024-11-23 16:46:30 +01:00
loadhist.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
loadup.el ; * lisp/loadup.el: Silence checkdoc. 2024-12-11 01:06:48 +01:00
locate.el Capitalize "Dired" and "Lisp" in docstrings 2024-07-10 00:36:19 +02:00
lpr.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ls-lisp.el Reset ls-lisp-use-string-collate when ls-lisp-emulation changes 2024-06-24 14:39:03 +02:00
macros.el doc: Delete extraneous quotes around keys 2024-01-21 14:09:34 +01:00
Makefile.in Delete cc-compat.el from Makefile.in 2024-09-01 15:24:51 +02:00
man.el man.el: Guess flags for man -k to fix bug#73656 2024-11-17 16:52:33 -05:00
master.el * lisp/master.el (master-says): Check nil argument (bug#70230). 2024-04-07 09:15:21 +03:00
mb-depth.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
md4.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
menu-bar.el ; * lisp/menu-bar.el (menu-bar-showhide-menu): Small optimization. 2024-09-01 20:05:02 +03:00
midnight.el ; * lisp/midnight.el (midnight-mode): forward-declare midnight-delay 2024-09-21 19:34:16 +02:00
minibuf-eldef.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
minibuffer.el * lisp/minibuffer.el: Mention `eager-display' in more docstrings. 2024-12-17 09:52:38 +02:00
misc.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
misearch.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
mouse-copy.el Miscellaneous checkdoc fixes 2024-07-20 02:42:08 +02:00
mouse-drag.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
mouse.el (mouse-wheel-buttons): Map old-style wheel buttons to actual wheel events 2024-04-09 10:26:07 -04:00
mpc.el Add song viewer to 'mpc' (Bug#74200) 2024-11-14 10:42:07 -05:00
msb.el Capitalize "Dired" and "Lisp" in docstrings 2024-07-10 00:36:19 +02:00
mwheel.el (mouse-wheel-buttons): Map old-style wheel buttons to actual wheel events 2024-04-09 10:26:07 -04:00
newcomment.el Prefer defcustom :local specifier 2024-10-04 01:38:11 +02:00
notifications.el Merge from origin/emacs-29 2024-01-27 08:14:31 -05:00
novice.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
obarray.el ; Fix some wording in recent obarray changes. 2024-02-29 16:25:26 +01:00
outline.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
paren.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
password-cache.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
pcmpl-cvs.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
pcmpl-git.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
pcmpl-gnu.el Don't pcomplete 'find -newerxy' flag 2024-11-10 01:29:47 +01:00
pcmpl-linux.el Avoid defconst for vars which we modify 2024-01-04 18:44:43 -05:00
pcmpl-rpm.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
pcmpl-unix.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
pcmpl-x.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
pcomplete.el ; Simplify (with-current-buffer (get-buffer ...) ...) 2024-03-14 12:40:26 +02:00
pgtk-dnd.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
pixel-scroll.el Fix :type of some user options 2024-09-08 19:17:48 +03:00
plstore.el Prefer defcustom :local specifier 2024-10-04 01:38:11 +02:00
printing.el Miscellaneous checkdoc fixes 2024-07-20 02:42:08 +02:00
proced.el Use `completion-table-with-metadata' (bug#74865) 2024-12-16 20:19:49 +02:00
profiler.el Further fix of reading and writing profiler data 2024-08-17 20:48:05 +03:00
ps-bdf.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ps-mule.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
ps-print.el Remove more references to Windows 95 2024-06-20 13:30:11 +02:00
ps-samp.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
README
recentf.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
rect.el Speed up tall rectangular selections (bug#72830) 2024-09-20 12:42:18 +02:00
register.el ; Touch up 'buffer-to-register' 2024-10-08 09:01:47 +02:00
registry.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
repeat.el Rename the property 'repeat-continue-only' to 'repeat-continue' 2024-12-17 20:58:09 +02:00
replace.el Add new optional argument NO-HIGHLIGHT to query-replace-read-args 2024-07-28 09:52:51 +03:00
reposition.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
reveal.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
rfn-eshadow.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
rot13.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
rtree.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
ruler-mode.el (ruler-mode-ruler): Minor optimization 2024-05-04 12:06:16 -04:00
savehist.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
saveplace.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
scroll-all.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
scroll-bar.el ; Fix doc strings of two scroll-bar functions. 2024-05-11 08:29:22 +03:00
scroll-lock.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
select.el Miscellaneous checkdoc fixes 2024-07-20 02:42:08 +02:00
server.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
ses.el Don't use obsolete lisp-complete-symbol in ses.el 2024-12-17 01:40:59 +01:00
shadowfile.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
shell.el Remove obsolete 'display-comint-buffer-action' (bug#74361) 2024-12-04 09:40:33 +02:00
simple.el Use `completion-table-with-metadata' (bug#74865) 2024-12-16 20:19:49 +02:00
skeleton.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
so-long.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
sort.el Remove sort-on (bug#69709) 2024-03-29 11:39:38 +01:00
soundex.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
speedbar.el Rewrite Speedbar expansion for all descendants (bug#73533) 2024-10-19 10:33:35 +03:00
sqlite-mode.el Miscellaneous checkdoc fixes 2024-07-20 02:42:08 +02:00
sqlite.el Fix 'with-sqlite-transaction' 2024-03-11 15:23:55 +02:00
startup.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
strokes.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
subr.el unintern: Drop support for obsolete calling convention 2024-12-17 00:59:51 +01:00
svg.el Avoid inserting extra space in SVG data 2024-08-04 10:47:16 +03:00
t-mouse.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
tab-bar.el Don't start docstrings with "This function" 2024-11-01 23:56:12 +01:00
tab-line.el * lisp/tab-line.el (tab-line-tabs-fixed-window-buffers): More optimizations. 2024-12-04 20:38:41 +02:00
tabify.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
talk.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
tar-mode.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
tempo.el Miscellaneous checkdoc fixes 2024-07-20 02:42:08 +02:00
term.el Fix term.el tests; refine previous change 2024-10-04 00:56:37 -04:00
thingatpt.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
thread.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
time-stamp.el time-stamp: fix search end, more compatibility suggestions 2024-12-14 10:23:04 -08:00
time.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
timezone.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
tmm.el New customization variable `completion-eager-display' 2024-12-14 14:38:29 +02:00
tool-bar.el Small followup change 2024-06-03 20:39:41 +08:00
tooltip.el Fix 'dictionary-tooltip-mode' 2024-05-10 15:56:30 +03:00
touch-screen.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
transient.el transient.el: Replace use of obsolete if-let and when-let 2024-10-27 18:45:31 +08:00
tree-widget.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
treesit.el Declare tree-sitter functions with a new macro 2024-12-12 20:59:08 -08:00
tutorial.el Fix last change in tutorial.el 2024-12-01 19:27:49 +02:00
type-break.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
uniquify.el Capitalize "Dired" and "Lisp" in docstrings 2024-07-10 00:36:19 +02:00
userlock.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
vcursor.el Pacify some docstring control char warnings 2024-02-28 17:04:20 +01:00
version.el Respect --disable-build-details in Android builds 2024-06-30 16:26:39 +08:00
view.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
visual-wrap.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
w32-fns.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
w32-vars.el ; Add 2024 to copyright years 2024-01-02 09:47:10 +08:00
wdired.el Fix doc string of 'wdired-use-dired-vertical-movement' 2024-10-27 13:41:24 +02:00
which-key.el Merge from origin/emacs-30 2024-11-23 04:46:09 -05:00
whitespace.el Merge from origin/emacs-30 2024-09-21 07:32:38 -04:00
wid-browse.el Speed up describe-char when a property has a large value 2024-03-21 12:28:54 -04:00
wid-edit.el ; Drop two outdated calls to 'require' 2024-10-24 17:20:46 +08:00
widget.el ; * lisp/widget.el: Delete commented out code. 2024-12-15 19:20:04 +01:00
windmove.el doc: Delete extraneous quotes around keys 2024-01-21 14:09:34 +01:00
window-tool-bar.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
window.el Remove obsolete 'display-comint-buffer-action' (bug#74361) 2024-12-04 09:40:33 +02:00
winner.el ; Fix typos 2024-07-18 11:46:50 +02:00
woman.el Capitalize "Dired" and "Lisp" in docstrings 2024-07-10 00:36:19 +02:00
x-dnd.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
xdg.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
xml.el Merge from savannah/emacs-29 2024-01-02 10:28:14 +08:00
xt-mouse.el Enable xterm-mouse-mode by default in xterm 2024-12-12 12:51:13 +02:00
xwidget.el Mark if-let and when-let obsolete 2024-10-24 16:50:07 +08:00
yank-media.el Fix 'yank-media' to allow yanking SVG data 2024-10-31 12:36:31 +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.