aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Whitton2025-03-12 10:24:22 +0800
committerSean Whitton2025-03-12 10:24:22 +0800
commit2aef2951c06c04c23455419283a232f8d55d5ecd (patch)
treea9b290317b8b4ce7d783b01a38fa3171120b615d
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".
-rw-r--r--configure.ac8
-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
-rw-r--r--etc/TODO6
-rw-r--r--lisp/auth-source.el2
-rw-r--r--lisp/cedet/semantic/bovine/el.el2
-rw-r--r--lisp/editorconfig.el2
-rw-r--r--lisp/emacs-lisp/cconv.el2
-rw-r--r--lisp/emacs-lisp/oclosure.el2
-rw-r--r--lisp/net/tramp-message.el2
-rw-r--r--lisp/progmodes/peg.el2
-rw-r--r--src/frame.c2
-rw-r--r--test/lisp/emacs-lisp/shortdoc-tests.el2
15 files changed, 22 insertions, 22 deletions
diff --git a/configure.ac b/configure.ac
index 22082cf737b..253276d8de5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5078,16 +5078,16 @@ AC_DEFUN([libgccjit_smoke_test], [
5078 }]])]) 5078 }]])])
5079 5079
5080AC_DEFUN([libgccjit_not_found_err], [ 5080AC_DEFUN([libgccjit_not_found_err], [
5081 AC_MSG_ERROR([Elisp native compiler was requested, but libgccjit was not found. 5081 AC_MSG_ERROR([Lisp native compiler was requested, but libgccjit was not found.
5082Please try installing libgccjit or a similar package. 5082Please try installing libgccjit or a similar package.
5083If you are sure you want Emacs be compiled without Elisp native compiler, 5083If you are sure you want Emacs be compiled without the Lisp native compiler,
5084pass the --without-native-compilation option to configure.])]) 5084pass the --without-native-compilation option to configure.])])
5085 5085
5086AC_DEFUN([libgccjit_dev_not_found_err], [ 5086AC_DEFUN([libgccjit_dev_not_found_err], [
5087 AC_MSG_ERROR([Elisp native compiler was requested, but libgccjit header files were 5087 AC_MSG_ERROR([Lisp native compiler was requested, but libgccjit header files were
5088not found. 5088not found.
5089Please try installing libgccjit-dev or a similar package. 5089Please try installing libgccjit-dev or a similar package.
5090If you are sure you want Emacs be compiled without Elisp native compiler, 5090If you are sure you want Emacs be compiled without the Lisp native compiler,
5091pass the --without-native-compilation option to configure.])]) 5091pass the --without-native-compilation option to configure.])])
5092 5092
5093AC_DEFUN([libgccjit_broken_err], [ 5093AC_DEFUN([libgccjit_broken_err], [
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
diff --git a/etc/TODO b/etc/TODO
index 77c1a276cd5..0700452b757 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -105,7 +105,7 @@ longer)."
105 105
106** Do interactive mode tagging for commands 106** Do interactive mode tagging for commands
107Change "(interactive)" to "(interactive nil foo-mode)" for command 107Change "(interactive)" to "(interactive nil foo-mode)" for command
108completion purposes. Pick a major mode or Elisp library, and check 108completion purposes. Pick a major mode or Lisp library, and check
109all interactive commands to see if they are only relevant in one 109all interactive commands to see if they are only relevant in one
110particular mode. This requires care as some commands might be useful 110particular mode. This requires care as some commands might be useful
111outside of the mode they were written for. 111outside of the mode they were written for.
@@ -730,9 +730,9 @@ H-S-C-M-s-double-wheel-up, ...
730 730
731*** Support for the $ (paired delimiter) in parse-partial-sexp 731*** Support for the $ (paired delimiter) in parse-partial-sexp
732 732
733*** Support for hook-chars whose effect is specified by Elisp code 733*** Support for hook-chars whose effect is specified by Lisp
734Hook-chars could have their effect on the parsing-state specified by 734Hook-chars could have their effect on the parsing-state specified by
735Elisp code. Thus a character could both close a string and open a 735Lisp code. Thus a character could both close a string and open a
736comment at the same time and do it in a context-sensitive way. 736comment at the same time and do it in a context-sensitive way.
737 737
738*** Ability to add mode-specific data to the partial-parse-state 738*** Ability to add mode-specific data to the partial-parse-state
diff --git a/lisp/auth-source.el b/lisp/auth-source.el
index 06f23af5b11..1d039d8b0d1 100644
--- a/lisp/auth-source.el
+++ b/lisp/auth-source.el
@@ -638,7 +638,7 @@ will ensure that any results will actually have a :secret
638property. 638property.
639 639
640:delete t means to delete any found entries. nil by default. 640:delete t means to delete any found entries. nil by default.
641Use `auth-source-delete' in Elisp code instead of calling 641Use `auth-source-delete' in Lisp code instead of calling
642`auth-source-search' directly with this parameter. 642`auth-source-search' directly with this parameter.
643 643
644:type (X Y Z) will check only those backend types. `netrc' and 644:type (X Y Z) will check only those backend types. `netrc' and
diff --git a/lisp/cedet/semantic/bovine/el.el b/lisp/cedet/semantic/bovine/el.el
index f27bb479c48..fddb1884c9d 100644
--- a/lisp/cedet/semantic/bovine/el.el
+++ b/lisp/cedet/semantic/bovine/el.el
@@ -926,7 +926,7 @@ See `semantic-format-tag-prototype' for Emacs Lisp for more details."
926(defvar-mode-local emacs-lisp-mode semantic-stickyfunc-sticky-classes 926(defvar-mode-local emacs-lisp-mode semantic-stickyfunc-sticky-classes
927 '(function type variable) 927 '(function type variable)
928 "Add variables. 928 "Add variables.
929Elisp variables can be pretty long, so track this one too.") 929Elisp variable names can be pretty long, so track this one too.")
930 930
931(with-suppressed-warnings ((obsolete define-child-mode)) 931(with-suppressed-warnings ((obsolete define-child-mode))
932 ;; FIXME: We should handle this some other way! 932 ;; FIXME: We should handle this some other way!
diff --git a/lisp/editorconfig.el b/lisp/editorconfig.el
index bf29f34e2db..7cdd79fa3b0 100644
--- a/lisp/editorconfig.el
+++ b/lisp/editorconfig.el
@@ -604,7 +604,7 @@ This function also removes `unset' properties and calls
604Every function is called with one argument, a hash-table indexed by 604Every function is called with one argument, a hash-table indexed by
605EditorConfig settings represented as symbols and whose corresponding value 605EditorConfig settings represented as symbols and whose corresponding value
606is represented as a string. It should return a list of (VAR . VAL) settings 606is represented as a string. It should return a list of (VAR . VAL) settings
607where VAR is an Elisp variable and VAL is the value to which it should be set.") 607where VAR is a Lisp variable and VAL is the value to which it should be set.")
608 608
609(defun editorconfig--get-local-variables (props) 609(defun editorconfig--get-local-variables (props)
610 "Get variables settings according to EditorConfig PROPS." 610 "Get variables settings according to EditorConfig PROPS."
diff --git a/lisp/emacs-lisp/cconv.el b/lisp/emacs-lisp/cconv.el
index c6e8db11b16..170c7828cdd 100644
--- a/lisp/emacs-lisp/cconv.el
+++ b/lisp/emacs-lisp/cconv.el
@@ -904,7 +904,7 @@ lexically and dynamically bound symbols actually used by FORM."
904 904
905(defun cconv-make-interpreted-closure (args body env docstring iform) 905(defun cconv-make-interpreted-closure (args body env docstring iform)
906 "Make a closure for the interpreter. 906 "Make a closure for the interpreter.
907This is intended to be called at runtime by the Elisp interpreter (when 907This is intended to be called at runtime by the Lisp interpreter (when
908the code has not been compiled). 908the code has not been compiled).
909FUN is the closure's source code, must be a lambda form. 909FUN is the closure's source code, must be a lambda form.
910ENV is the runtime representation of the lexical environment, 910ENV is the runtime representation of the lexical environment,
diff --git a/lisp/emacs-lisp/oclosure.el b/lisp/emacs-lisp/oclosure.el
index 2574c7dac60..d38429648e6 100644
--- a/lisp/emacs-lisp/oclosure.el
+++ b/lisp/emacs-lisp/oclosure.el
@@ -555,7 +555,7 @@ immutable fields are indeed not mutated."
555(defun cconv--interactive-helper (fun if) 555(defun cconv--interactive-helper (fun if)
556 "Add interactive \"form\" IF to FUN. 556 "Add interactive \"form\" IF to FUN.
557Returns a new command that otherwise behaves like FUN. 557Returns a new command that otherwise behaves like FUN.
558IF can be an Elisp form to be interpreted or a function of no arguments." 558IF can be a Lisp form to be interpreted or a function of no arguments."
559 (oclosure-lambda (cconv--interactive-helper (fun fun) (if if)) 559 (oclosure-lambda (cconv--interactive-helper (fun fun) (if if))
560 (&rest args) 560 (&rest args)
561 (apply (if (called-interactively-p 'any) 561 (apply (if (called-interactively-p 'any)
diff --git a/lisp/net/tramp-message.el b/lisp/net/tramp-message.el
index 00d20e31edc..20bf720c41b 100644
--- a/lisp/net/tramp-message.el
+++ b/lisp/net/tramp-message.el
@@ -109,7 +109,7 @@ When it is used for regexp matching, the regexp groups are
109 3 for the verbosity level.") 109 3 for the verbosity level.")
110 110
111(defconst tramp-debug-font-lock-keywords 111(defconst tramp-debug-font-lock-keywords
112 ;; FIXME: Make it a function instead of an Elisp expression, so you 112 ;; FIXME: Make it a function instead of a Lisp expression, so you
113 ;; can evaluate it with `funcall' rather than `eval'! 113 ;; can evaluate it with `funcall' rather than `eval'!
114 ;; Also, in `font-lock-defaults' you can specify a function name for 114 ;; Also, in `font-lock-defaults' you can specify a function name for
115 ;; the "KEYWORDS" part, so font-lock calls it to get the actual keywords! 115 ;; the "KEYWORDS" part, so font-lock calls it to get the actual keywords!
diff --git a/lisp/progmodes/peg.el b/lisp/progmodes/peg.el
index aa32624436b..f8fc7acc436 100644
--- a/lisp/progmodes/peg.el
+++ b/lisp/progmodes/peg.el
@@ -659,7 +659,7 @@ rulesets defined previously with `define-peg-ruleset'."
659 659
660;; This is the main translation function. 660;; This is the main translation function.
661(defun peg-translate-exp (exp) 661(defun peg-translate-exp (exp)
662 "Return the Elisp code to match the PE EXP." 662 "Return the Emacs Lisp code to match the PE EXP."
663 ;; FIXME: This expansion basically duplicates `exp' in the output, which is 663 ;; FIXME: This expansion basically duplicates `exp' in the output, which is
664 ;; a serious problem because it's done recursively, so it makes the output 664 ;; a serious problem because it's done recursively, so it makes the output
665 ;; code's size exponentially larger than the input! 665 ;; code's size exponentially larger than the input!
diff --git a/src/frame.c b/src/frame.c
index decb92bca21..bbff0dec2e4 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1892,7 +1892,7 @@ do_switch_frame (Lisp_Object frame, int track, int for_deletion, Lisp_Object nor
1892 1892
1893 /* After setting `selected_frame`, we're temporarily in an inconsistent 1893 /* After setting `selected_frame`, we're temporarily in an inconsistent
1894 state where (selected-window) != (frame-selected-window). Until this 1894 state where (selected-window) != (frame-selected-window). Until this
1895 invariant is restored we should be very careful not to run Elisp code. 1895 invariant is restored we should be very careful not to run any Lisp.
1896 (bug#58343) */ 1896 (bug#58343) */
1897 selected_frame = frame; 1897 selected_frame = frame;
1898 1898
diff --git a/test/lisp/emacs-lisp/shortdoc-tests.el b/test/lisp/emacs-lisp/shortdoc-tests.el
index d826d596951..1cbec24a556 100644
--- a/test/lisp/emacs-lisp/shortdoc-tests.el
+++ b/test/lisp/emacs-lisp/shortdoc-tests.el
@@ -90,7 +90,7 @@
90 (shortdoc-function-examples 'string-match-p))))) 90 (shortdoc-function-examples 'string-match-p)))))
91 91
92(ert-deftest shortdoc-help-fns-examples-function-test () 92(ert-deftest shortdoc-help-fns-examples-function-test ()
93 "Test that `shortdoc-help-fns-examples-function' correctly prints Elisp function examples." 93 "Test that `shortdoc-help-fns-examples-function' correctly prints Lisp function examples."
94 (with-temp-buffer 94 (with-temp-buffer
95 (shortdoc-help-fns-examples-function 'string-fill) 95 (shortdoc-help-fns-examples-function 'string-fill)
96 (should (equal "\n Examples:\n\n (string-fill \"Three short words\" 12)\n => \"Three short\\nwords\"\n (string-fill \"Long-word\" 3)\n => \"Long-word\"\n\n" 96 (should (equal "\n Examples:\n\n (string-fill \"Three short words\" 12)\n => \"Three short\\nwords\"\n (string-fill \"Long-word\" 3)\n => \"Long-word\"\n\n"