diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-11-27 18:07:57 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-11-27 18:12:45 +0100 |
commit | 7bf393dcf0d905b947e5f5311815a08586ced0b0 (patch) | |
tree | 43d3d8e81b62151bae968a8f3540bed58fbc5aef /lisp/emacs-lisp | |
parent | eaa823b9d6f0ca62f3dd29508096503789388f7b (diff) | |
download | emacs-7bf393dcf0d905b947e5f5311815a08586ced0b0.tar.gz emacs-7bf393dcf0d905b947e5f5311815a08586ced0b0.tar.bz2 emacs-7bf393dcf0d905b947e5f5311815a08586ced0b0.zip |
; Consistently call alists "association list"
* doc/lispref/compile.texi (Compiler Errors):
* doc/misc/gnus.texi (Score File Format):
* etc/NEWS.24:
* lisp/emacs-lisp/byte-run.el (with-suppressed-warnings):
* lisp/progmodes/gdb-mi.el (gdb-threads-list)
(gdb-breakpoints-list, gdb-place-breakpoints): Prefer the term
"association list" for alists.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index a33808ab92d..1babf3ec2c4 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -632,7 +632,7 @@ enabled." (defmacro with-suppressed-warnings (warnings &rest body) "Like `progn', but prevents compiler WARNINGS in BODY. -WARNINGS is an associative list where the first element of each +WARNINGS is an association list where the first element of each item is a warning type, and the rest of the elements in each item are symbols they apply to. For instance, if you want to suppress byte compilation warnings about the two obsolete functions `foo' |