aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/fns.c b/src/fns.c
index df921e28f3b..f45c729cfaf 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -532,14 +532,12 @@ Do NOT use this function to compare file names for equality. */)
532static Lisp_Object concat (ptrdiff_t nargs, Lisp_Object *args, 532static Lisp_Object concat (ptrdiff_t nargs, Lisp_Object *args,
533 enum Lisp_Type target_type, bool last_special); 533 enum Lisp_Type target_type, bool last_special);
534 534
535/* ARGSUSED */
536Lisp_Object 535Lisp_Object
537concat2 (Lisp_Object s1, Lisp_Object s2) 536concat2 (Lisp_Object s1, Lisp_Object s2)
538{ 537{
539 return concat (2, ((Lisp_Object []) {s1, s2}), Lisp_String, 0); 538 return concat (2, ((Lisp_Object []) {s1, s2}), Lisp_String, 0);
540} 539}
541 540
542/* ARGSUSED */
543Lisp_Object 541Lisp_Object
544concat3 (Lisp_Object s1, Lisp_Object s2, Lisp_Object s3) 542concat3 (Lisp_Object s1, Lisp_Object s2, Lisp_Object s3)
545{ 543{
@@ -2577,7 +2575,6 @@ This makes STRING unibyte and may change its length. */)
2577 return Qnil; 2575 return Qnil;
2578} 2576}
2579 2577
2580/* ARGSUSED */
2581Lisp_Object 2578Lisp_Object
2582nconc2 (Lisp_Object s1, Lisp_Object s2) 2579nconc2 (Lisp_Object s1, Lisp_Object s2)
2583{ 2580{