diff options
| author | Sean Whitton | 2025-03-12 10:24:22 +0800 |
|---|---|---|
| committer | Sean Whitton | 2025-03-12 10:24:22 +0800 |
| commit | 2aef2951c06c04c23455419283a232f8d55d5ecd (patch) | |
| tree | a9b290317b8b4ce7d783b01a38fa3171120b615d /src | |
| parent | d01a391195e4f6282a587fcc581bb6cd8b2204e1 (diff) | |
| download | emacs-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 'src')
| -rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 | ||