aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c2
-rw-r--r--src/lread.c6
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.
847DIRECTORY or the non-final elements in COMPONENTS may or may not end 847DIRECTORY or the non-final elements in COMPONENTS may or may not end
848with a slash -- if they don't end with a slash, a slash will be 848with a slash -- if they don't end with a slash, a slash will be
849inserted before concatenating. 849inserted before concatenating.
850usage: (record DIRECTORY &rest COMPONENTS) */) 850usage: (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;