aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSean Whitton2025-03-12 10:24:22 +0800
committerSean Whitton2025-03-12 10:24:22 +0800
commit2aef2951c06c04c23455419283a232f8d55d5ecd (patch)
treea9b290317b8b4ce7d783b01a38fa3171120b615d /doc
parentd01a391195e4f6282a587fcc581bb6cd8b2204e1 (diff)
downloademacs-2aef2951c06c04c23455419283a232f8d55d5ecd.tar.gz
emacs-2aef2951c06c04c23455419283a232f8d55d5ecd.zip
; Replace "Elisp" with "Lisp" or "Emacs Lisp" in some places
* configure.ac (libgccjit_not_found_err) (libgccjit_dev_not_found_err): * doc/lispref/elisp.texi (Top): * doc/lispref/functions.texi (What Is a Function): * doc/lispref/parsing.texi (Parsing Program Source) (Tree-sitter C API): * doc/misc/gnus.texi (The Gnus Registry): * etc/TODO: * lisp/auth-source.el (auth-source-search): * lisp/cedet/semantic/bovine/el.el (emacs-lisp-mode): * lisp/editorconfig.el (editorconfig-get-local-variables-functions): * lisp/emacs-lisp/cconv.el (cconv-make-interpreted-closure): * lisp/emacs-lisp/oclosure.el (cconv--interactive-helper): * lisp/net/tramp-message.el (tramp-debug-font-lock-keywords): * src/frame.c (do_switch_frame): * test/lisp/emacs-lisp/shortdoc-tests.el (shortdoc-help-fns-examples-function-test): Say "Lisp" not "Elisp". * lisp/progmodes/peg.el (peg-translate-exp): Say "Emacs Lisp" not "Elisp".
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/elisp.texi2
-rw-r--r--doc/lispref/functions.texi2
-rw-r--r--doc/lispref/parsing.texi6
-rw-r--r--doc/misc/gnus.texi2
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index ee73d50e8ce..def50ef7c64 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -1388,7 +1388,7 @@ Parsing Program Source
1388* Pattern Matching:: Pattern matching with query patterns. 1388* Pattern Matching:: Pattern matching with query patterns.
1389* Multiple Languages:: Parse text written in multiple languages. 1389* Multiple Languages:: Parse text written in multiple languages.
1390* Tree-sitter Major Modes:: Develop major modes using tree-sitter. 1390* Tree-sitter Major Modes:: Develop major modes using tree-sitter.
1391* Tree-sitter C API:: Compare the C API and the Elisp API. 1391* Tree-sitter C API:: Compare the C API and the Lisp API.
1392 1392
1393Syntax Descriptors 1393Syntax Descriptors
1394 1394
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index 122b6f52a8e..1279b15b819 100644
--- a/doc/lispref/functions.texi
+++ b/doc/lispref/functions.texi
@@ -219,7 +219,7 @@ function. For example:
219 219
220@defun compiled-function-p object 220@defun compiled-function-p object
221This function returns @code{t} if @var{object} is a function object 221This function returns @code{t} if @var{object} is a function object
222that is not in the form of Elisp source code but something like 222that is not in the form of Lisp source code but something like
223machine code or byte code instead. More specifically it returns 223machine code or byte code instead. More specifically it returns
224@code{t} if the function is built-in (a.k.a.@: ``primitive'', 224@code{t} if the function is built-in (a.k.a.@: ``primitive'',
225@pxref{What Is a Function}), or byte-compiled (@pxref{Byte 225@pxref{What Is a Function}), or byte-compiled (@pxref{Byte
diff --git a/doc/lispref/parsing.texi b/doc/lispref/parsing.texi
index 8968eafd91b..3e8e0851f2c 100644
--- a/doc/lispref/parsing.texi
+++ b/doc/lispref/parsing.texi
@@ -48,7 +48,7 @@ source files that mix multiple programming languages.
48* User-defined Things:: User-defined ``Things'' and Navigation. 48* User-defined Things:: User-defined ``Things'' and Navigation.
49* Multiple Languages:: Parse text written in multiple languages. 49* Multiple Languages:: Parse text written in multiple languages.
50* Tree-sitter Major Modes:: Develop major modes using tree-sitter. 50* Tree-sitter Major Modes:: Develop major modes using tree-sitter.
51* Tree-sitter C API:: Compare the C API and the Elisp API. 51* Tree-sitter C API:: Compare the C API and the Lisp API.
52@end menu 52@end menu
53 53
54@node Language Grammar 54@node Language Grammar
@@ -2305,8 +2305,8 @@ Null nodes are converted to @code{nil}.
2305@end itemize 2305@end itemize
2306 2306
2307Below is the correspondence between all C API functions and their 2307Below is the correspondence between all C API functions and their
2308Elisp counterparts. Sometimes one Elisp function corresponds to 2308Lisp counterparts. Sometimes one Lisp function corresponds to
2309multiple C functions, and many C functions don't have an Elisp 2309multiple C functions, and many C functions don't have a Lisp
2310counterpart. 2310counterpart.
2311 2311
2312@example 2312@example
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index 0ef3afb7f7c..62909fc99f1 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -26271,7 +26271,7 @@ etc.@: backends.
26271@item 26271@item
26272Store arbitrary data 26272Store arbitrary data
26273 26273
26274Through a simple Elisp API, the registry can remember any data for a 26274Through a simple Lisp API, the registry can remember any data for a
26275message. A built-in inverse map, when activated, allows quick lookups 26275message. A built-in inverse map, when activated, allows quick lookups
26276of all messages matching a particular set of criteria. 26276of all messages matching a particular set of criteria.
26277@end enumerate 26277@end enumerate