aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-01-02 23:23:21 +0000
committerRichard M. Stallman1998-01-02 23:23:21 +0000
commitf171f7c36369683dade05eea68c8207d0ccf1e66 (patch)
tree8ea0e46f16ae50e696474005590e00a50c9e662d
parent7d92db58826b2333e7c318251dc178fa99fc32cc (diff)
downloademacs-f171f7c36369683dade05eea68c8207d0ccf1e66.tar.gz
emacs-f171f7c36369683dade05eea68c8207d0ccf1e66.zip
(Fchar_boundary_p): Function deleted.
(syms_of_charset): defsubr deleted.
-rw-r--r--src/charset.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/charset.c b/src/charset.c
index 247dd9de3a9..79ee7cdd2a8 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1056,21 +1056,6 @@ chars_in_text (ptr, nbytes)
1056 return chars; 1056 return chars;
1057} 1057}
1058 1058
1059DEFUN ("char-boundary-p", Fchar_boundary_p, Schar_boundary_p, 1, 1, 0,
1060 "Return non-nil value if POS is at character boundary of multibyte form.\n\
1061When the value is non-nil, it contains some additional information:\n\
1062 0 if POS is at an ASCII character or at the end of range,\n\
1063 1 if POS is before a 2-byte length multi-byte form,\n\
1064 2 if POS is before a 3-byte length multi-byte form,\n\
1065 3 if POS is before a 4-byte length multi-byte form,\n\
1066 4 if POS is before a composite character.\n\
1067If POS is out of range or not at character boundary, return NIL.")
1068 (pos)
1069 Lisp_Object pos;
1070{
1071 return make_number (0);
1072}
1073
1074DEFUN ("concat-chars", Fconcat_chars, Sconcat_chars, 1, MANY, 0, 1059DEFUN ("concat-chars", Fconcat_chars, Sconcat_chars, 1, MANY, 0,
1075 "Concatenate all the argument characters and make the result a string.") 1060 "Concatenate all the argument characters and make the result a string.")
1076 (n, args) 1061 (n, args)
@@ -1643,7 +1628,6 @@ syms_of_charset ()
1643 defsubr (&Schar_direction); 1628 defsubr (&Schar_direction);
1644 defsubr (&Schars_in_string); 1629 defsubr (&Schars_in_string);
1645 defsubr (&Schars_in_region); 1630 defsubr (&Schars_in_region);
1646 defsubr (&Schar_boundary_p);
1647 defsubr (&Sconcat_chars); 1631 defsubr (&Sconcat_chars);
1648 defsubr (&Scmpcharp); 1632 defsubr (&Scmpcharp);
1649 defsubr (&Scmpchar_component); 1633 defsubr (&Scmpchar_component);