diff options
| author | Eli Zaretskii | 2024-03-16 05:47:41 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2024-03-16 05:47:41 -0400 |
| commit | cc8a2c57b5eed4045035dfeaf129ce33d7f74733 (patch) | |
| tree | 793edac12eec2ecc8539441e152e7b33fad9ab78 /src | |
| parent | 899ea79310d1b8ed78c3fd8ac1784043dd732dbf (diff) | |
| parent | 3b791ebbe173fa18515558acaafbef1f88c51791 (diff) | |
| download | emacs-cc8a2c57b5eed4045035dfeaf129ce33d7f74733.tar.gz emacs-cc8a2c57b5eed4045035dfeaf129ce33d7f74733.zip | |
Merge from origin/emacs-29
3b791ebbe17 ; Fix 'usage:' keyword in Ffile_name_concat doc.
ed48b0d657c ; * CONTRIBUTE: Ask not to use non-ASCII unless necessary.
b708e639d63 ; * src/lread.c (maybe_swap_for_eln): Clarify warning mes...
db027a06976 ; Fix bibtex-biblatex-field-alist docstring typo.
a9be5c7ea92 ; * doc/lispref/control.texi (Conditionals): Add missing ...
db5915f30ba Fix 'with-sqlite-transaction'
fe491173e8f ; * doc/emacs/files.texi (Image Mode): Fix typo (bug#69671).
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 2 | ||||
| -rw-r--r-- | src/lread.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/fileio.c b/src/fileio.c index 483498fd879..12da7a9ed3a 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -847,7 +847,7 @@ Each element in COMPONENTS must be a string or nil. | |||
| 847 | DIRECTORY or the non-final elements in COMPONENTS may or may not end | 847 | DIRECTORY or the non-final elements in COMPONENTS may or may not end |
| 848 | with a slash -- if they don't end with a slash, a slash will be | 848 | with a slash -- if they don't end with a slash, a slash will be |
| 849 | inserted before concatenating. | 849 | inserted before concatenating. |
| 850 | usage: (record DIRECTORY &rest COMPONENTS) */) | 850 | usage: (file-name-concat DIRECTORY &rest COMPONENTS) */) |
| 851 | (ptrdiff_t nargs, Lisp_Object *args) | 851 | (ptrdiff_t nargs, Lisp_Object *args) |
| 852 | { | 852 | { |
| 853 | ptrdiff_t chars = 0, bytes = 0, multibytes = 0, eargs = 0; | 853 | ptrdiff_t chars = 0, bytes = 0, multibytes = 0, eargs = 0; |
diff --git a/src/lread.c b/src/lread.c index 49683d02401..1cb941e84fc 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1950,9 +1950,9 @@ maybe_swap_for_eln (bool no_native, Lisp_Object *filename, int *fd, | |||
| 1950 | = Fcons (list2 | 1950 | = Fcons (list2 |
| 1951 | (Qcomp, | 1951 | (Qcomp, |
| 1952 | CALLN (Fformat, | 1952 | CALLN (Fformat, |
| 1953 | build_string ("Cannot look up eln " | 1953 | build_string ("Cannot look up .eln file " |
| 1954 | "file as no source file " | 1954 | "for %s because no source " |
| 1955 | "was found for %s"), | 1955 | "file was found for it"), |
| 1956 | *filename)), | 1956 | *filename)), |
| 1957 | Vdelayed_warnings_list); | 1957 | Vdelayed_warnings_list); |
| 1958 | return; | 1958 | return; |