From 21fbc8e5aec8803e1cd19c8c0eb7f5bae8df2ae4 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 29 Aug 1996 03:50:02 +0000 Subject: [PATCH] (Fsubstring): Handle vectors as well as strings. --- src/fns.c | 36 +++++++++++++++++++++++++++--------- 1 file changed, 27 insertions(+), 9 deletions(-) diff --git a/src/fns.c b/src/fns.c index 64e2834bb1..64969bc9ca 100644 --- a/src/fns.c +++ b/src/fns.c @@ -509,31 +509,49 @@ Elements of ALIST that are not conses are also shared.") DEFUN ("substring", Fsubstring, Ssubstring, 2, 3, 0, "Return a substring of STRING, starting at index FROM and ending before TO.\n\ TO may be nil or omitted; then the substring runs to the end of STRING.\n\ -If FROM or TO is negative, it counts from the end.") +If FROM or TO is negative, it counts from the end.\n\ +\n\ +This function allows vectors as well as strings.") (string, from, to) Lisp_Object string; register Lisp_Object from, to; { Lisp_Object res; + int size; + + if (! (STRINGP (string) || VECTORP (string))) + wrong_type_argument (Qarrayp, string); - CHECK_STRING (string, 0); CHECK_NUMBER (from, 1); + + if (STRINGP (string)) + size = XSTRING (string)->size; + else + size = XVECTOR (string)->size; + if (NILP (to)) - to = Flength (string); + to = size; else CHECK_NUMBER (to, 2); if (XINT (from) < 0) - XSETINT (from, XINT (from) + XSTRING (string)->size); + XSETINT (from, XINT (from) + size); if (XINT (to) < 0) - XSETINT (to, XINT (to) + XSTRING (string)->size); + XSETINT (to, XINT (to) + size); if (!(0 <= XINT (from) && XINT (from) <= XINT (to) - && XINT (to) <= XSTRING (string)->size)) + && XINT (to) <= size)) args_out_of_range_3 (string, from, to); - res = make_string (XSTRING (string)->data + XINT (from), - XINT (to) - XINT (from)); - copy_text_properties (from, to, string, make_number (0), res, Qnil); + if (STRINGP (string)) + { + res = make_string (XSTRING (string)->data + XINT (from), + XINT (to) - XINT (from)); + copy_text_properties (from, to, string, make_number (0), res, Qnil); + } + else + res = Fvector (XINT (to) - XINT (from), + XVECTOR (string)->contents + XINT (from)); + return res; } -- 2.39.2