]> code.delx.au - gnu-emacs/blobdiff - lispref/strings.texi
(blink-cursor-mode): Don't hide cursor initially.
[gnu-emacs] / lispref / strings.texi
index bec0864de71ba83feac5733893690c8e9ea917ce..f5c73de809c69f4de377e65ecda6fd4192023c55 100644 (file)
@@ -1,6 +1,7 @@
 @c -*-texinfo-*-
 @c This is part of the GNU Emacs Lisp Reference Manual.
-@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc. 
+@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
+@c   Free Software Foundation, Inc. 
 @c See the file elisp.texi for copying conditions.
 @setfilename ../info/strings
 @node Strings and Characters, Lists, Numbers, Top
@@ -128,7 +129,6 @@ This function returns a string made up of @var{count} repetitions of
 @end defun
 
 @defun string &rest characters
-@tindex string
 This returns a string containing the characters @var{characters}.
 
 @example
@@ -270,7 +270,6 @@ Lists}.
 @end defun
 
 @defun split-string string separators
-@tindex split-string
 This function splits @var{string} into substrings at matches for the regular
 expression @var{separators}.  Each match for @var{separators} defines a
 splitting point; the substrings between the splitting points are made
@@ -319,7 +318,6 @@ that index, @code{aset} signals an error.
   A more powerful function is @code{store-substring}:
 
 @defun store-substring string idx obj
-@tindex store-substring
 This function alters part of the contents of the string @var{string}, by
 storing @var{obj} starting at index @var{idx}.  The argument @var{obj}
 may be either a character or a (smaller) string.
@@ -432,7 +430,6 @@ no characters is less than any other string.
 @end defun
 
 @defun compare-strings string1 start1 end1 string2 start2 end2 &optional ignore-case
-@tindex compare-strings
 This function compares the specified part of @var{string1} with the
 specified part of @var{string2}.  The specified part of @var{string1}
 runs from index @var{start1} up to index @var{end1} (@code{nil} means
@@ -454,14 +451,12 @@ portion) is less.
 @end defun
 
 @defun assoc-ignore-case key alist
-@tindex assoc-ignore-case
 This function works like @code{assoc}, except that @var{key} must be a
 string, and comparison is done using @code{compare-strings}.
 Case differences are ignored in this comparison.
 @end defun
 
 @defun assoc-ignore-representation key alist
-@tindex assoc-ignore-representation
 This function works like @code{assoc}, except that @var{key} must be a
 string, and comparison is done using @code{compare-strings}.
 Case differences are significant.