comparison src/search.c @ 109637:c4c8e4a16194

Remove extern declarations in .c files, .h files have them. * src/data.c: * src/dired.c: * src/editfns.c: * src/filelock.c: * src/fns.c: * src/font.c: * src/fontset.c: * src/frame.c: * src/fringe.c: * src/ftfont.c: * src/gtkutil.c: * src/indent.c: * src/keyboard.c: * src/keymap.c: * src/lread.c: * src/menu.c: * src/print.c: * src/search.c: * src/sound.c: * src/window.c: * src/xdisp.c: * src/xfaces.c: * src/xfns.c: * src/xfont.c: * src/xftfont.c: * src/xmenu.c: * src/xterm.c: Remove declarations.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 05 Aug 2010 16:34:12 -0700
parents 89a16701cde1
children 64732fa6188a
comparison
equal deleted inserted replaced
109636:2d3e59e887ac 109637:c4c8e4a16194
501 501
502 /* Match REGEXP against STRING, searching all of STRING ignoring case, 502 /* Match REGEXP against STRING, searching all of STRING ignoring case,
503 and return the index of the match, or negative on failure. 503 and return the index of the match, or negative on failure.
504 This does not clobber the match data. 504 This does not clobber the match data.
505 We assume that STRING contains single-byte characters. */ 505 We assume that STRING contains single-byte characters. */
506
507 extern Lisp_Object Vascii_downcase_table;
508 506
509 int 507 int
510 fast_c_string_match_ignore_case (Lisp_Object regexp, const char *string) 508 fast_c_string_match_ignore_case (Lisp_Object regexp, const char *string)
511 { 509 {
512 int val; 510 int val;