aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorAndreas Schwab2010-07-11 12:31:10 +0200
committerAndreas Schwab2010-07-11 12:31:10 +0200
commit8966b7575b1adf62101df4f2ba8ce7f59f893397 (patch)
treeedf79c21229574aa60525071acbfbd50aac9ff4b /lib-src
parentcf237e277f6b033fd8d47ecdc466722c73de5d96 (diff)
downloademacs-8966b7575b1adf62101df4f2ba8ce7f59f893397.tar.gz
emacs-8966b7575b1adf62101df4f2ba8ce7f59f893397.zip
Use strchr, strrchr instead of index, rindex
* callint.c (Fcall_interactively): Use strchr, strrchr instead of index, rindex. * doc.c (get_doc_string, Fsnarf_documentation): Likewise. * editfns.c (Fuser_full_name, Fformat): Likewise. * emacs.c (argmatch, sort_args, decode_env_path): Likewise. * fileio.c (Ffile_symlink_p): Likewise. * filelock.c (current_lock_owner): Likewise. * font.c (font_parse_name, font_parse_family_registry): Likewise. * fontset.c (fontset_pattern_regexp): Likewise. * lread.c (read1): Likewise. * sysdep.c (init_system_name): Likewise. * xfns.c (select_visual): Likewise. * s/hpux10-20.h (index, rindex): Don't define. * s/ms-w32.h (index): Likewise. * s/usg5-4.h: Likewise. * sed2v2.inp (HAVE_INDEX, HAVE_RINDEX): Don't edit. (HAVE_STRCHR, HAVE_STRRCHR): Edit to 1. * emacsclient.c (set_local_socket): Use strchr, strrchr instead of index, rindex. * movemail.c (mail_spool_name, popmail): Likewise. * pop.c (pop_list): Likewise. * CPP-DEFINES (HAVE_INDEX, HAVE_RINDEX): Remove. * configure.in: Don't check for index and rindex, check for strchr and strrchr. Define strchr and strrchr as index and rindex, resp., in src/config.h if not available.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog7
-rw-r--r--lib-src/emacsclient.c6
-rw-r--r--lib-src/movemail.c10
-rw-r--r--lib-src/pop.c4
4 files changed, 15 insertions, 12 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 125e0df4817..d0410f4c080 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,10 @@
12010-07-11 Andreas Schwab <schwab@linux-m68k.org>
2
3 * emacsclient.c (set_local_socket): Use strchr, strrchr instead of
4 index, rindex.
5 * movemail.c (mail_spool_name, popmail): Likewise.
6 * pop.c (pop_list): Likewise.
7
12010-07-11 Eli Zaretskii <eliz@gnu.org> 82010-07-11 Eli Zaretskii <eliz@gnu.org>
2 9
3 * makefile.w32-in (obj): Add menu.o, bidi.o, w32uniscrobe.o, 10 * makefile.w32-in (obj): Add menu.o, bidi.o, w32uniscrobe.o,
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index cb8a4ebcaf8..79143ff7a34 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -1234,8 +1234,10 @@ set_local_socket (void)
1234 char *server_name = "server"; 1234 char *server_name = "server";
1235 char *tmpdir; 1235 char *tmpdir;
1236 1236
1237 if (socket_name && !index (socket_name, '/') && !index (socket_name, '\\')) 1237 if (socket_name && !strchr (socket_name, '/')
1238 { /* socket_name is a file name component. */ 1238 && !strchr (socket_name, '\\'))
1239 {
1240 /* socket_name is a file name component. */
1239 server_name = socket_name; 1241 server_name = socket_name;
1240 socket_name = NULL; 1242 socket_name = NULL;
1241 default_sock = 1; /* Try both UIDs. */ 1243 default_sock = 1; /* Try both UIDs. */
diff --git a/lib-src/movemail.c b/lib-src/movemail.c
index dfa4a92d057..541edf545df 100644
--- a/lib-src/movemail.c
+++ b/lib-src/movemail.c
@@ -146,12 +146,6 @@ static char *mail_spool_name ();
146#ifndef HAVE_STRERROR 146#ifndef HAVE_STRERROR
147char *strerror (int); 147char *strerror (int);
148#endif 148#endif
149#ifdef HAVE_INDEX
150extern char *index (const char *, int);
151#endif
152#ifdef HAVE_RINDEX
153extern char *rindex (const char *, int);
154#endif
155 149
156static void fatal (char *s1, char *s2, char *s3); 150static void fatal (char *s1, char *s2, char *s3);
157static void error (char *s1, char *s2, char *s3); 151static void error (char *s1, char *s2, char *s3);
@@ -564,7 +558,7 @@ mail_spool_name (inname)
564 char *indir, *fname; 558 char *indir, *fname;
565 int status; 559 int status;
566 560
567 if (! (fname = rindex (inname, '/'))) 561 if (! (fname = strrchr (inname, '/')))
568 return NULL; 562 return NULL;
569 563
570 fname++; 564 fname++;
@@ -714,7 +708,7 @@ popmail (char *mailbox, char *outfile, int preserve, char *password, int reverse
714 char *user, *hostname; 708 char *user, *hostname;
715 709
716 user = mailbox; 710 user = mailbox;
717 if ((hostname = index(mailbox, ':'))) 711 if ((hostname = strchr (mailbox, ':')))
718 *hostname++ = '\0'; 712 *hostname++ = '\0';
719 713
720 server = pop_open (hostname, user, password, POP_NO_GETPASS); 714 server = pop_open (hostname, user, password, POP_NO_GETPASS);
diff --git a/lib-src/pop.c b/lib-src/pop.c
index 9eaefa4cb83..26a992fa0b0 100644
--- a/lib-src/pop.c
+++ b/lib-src/pop.c
@@ -465,7 +465,7 @@ pop_list (popserver server, int message, int **IDs, int **sizes)
465 return (-1); 465 return (-1);
466 } 466 }
467 (*IDs)[0] = atoi (&fromserver[4]); 467 (*IDs)[0] = atoi (&fromserver[4]);
468 fromserver = index (&fromserver[4], ' '); 468 fromserver = strchr (&fromserver[4], ' ');
469 if (! fromserver) 469 if (! fromserver)
470 { 470 {
471 strcpy (pop_error, 471 strcpy (pop_error,
@@ -496,7 +496,7 @@ pop_list (popserver server, int message, int **IDs, int **sizes)
496 return (-1); 496 return (-1);
497 } 497 }
498 (*IDs)[i] = atoi (fromserver); 498 (*IDs)[i] = atoi (fromserver);
499 fromserver = index (fromserver, ' '); 499 fromserver = strchr (fromserver, ' ');
500 if (! fromserver) 500 if (! fromserver)
501 { 501 {
502 strcpy (pop_error, 502 strcpy (pop_error,