comparison src/lread.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 6b02202d9fdc
children 64732fa6188a
comparison
equal deleted inserted replaced
109636:2d3e59e887ac 109637:c4c8e4a16194
73 Lisp_Object Qhash_table, Qdata; 73 Lisp_Object Qhash_table, Qdata;
74 Lisp_Object Qtest, Qsize; 74 Lisp_Object Qtest, Qsize;
75 Lisp_Object Qweakness; 75 Lisp_Object Qweakness;
76 Lisp_Object Qrehash_size; 76 Lisp_Object Qrehash_size;
77 Lisp_Object Qrehash_threshold; 77 Lisp_Object Qrehash_threshold;
78 extern Lisp_Object QCtest, QCsize, QCrehash_size, QCrehash_threshold, QCweakness;
79 78
80 Lisp_Object Qread_char, Qget_file_char, Qstandard_input, Qcurrent_load_list; 79 Lisp_Object Qread_char, Qget_file_char, Qstandard_input, Qcurrent_load_list;
81 Lisp_Object Qvariable_documentation, Vvalues, Vstandard_input, Vafter_load_alist; 80 Lisp_Object Qvariable_documentation, Vvalues, Vstandard_input, Vafter_load_alist;
82 Lisp_Object Qascii_character, Qload, Qload_file_name; 81 Lisp_Object Qascii_character, Qload, Qload_file_name;
83 Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction; 82 Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
88 /* Used instead of Qget_file_char while loading *.elc files compiled 87 /* Used instead of Qget_file_char while loading *.elc files compiled
89 by Emacs 21 or older. */ 88 by Emacs 21 or older. */
90 static Lisp_Object Qget_emacs_mule_file_char; 89 static Lisp_Object Qget_emacs_mule_file_char;
91 90
92 static Lisp_Object Qload_force_doc_strings; 91 static Lisp_Object Qload_force_doc_strings;
93
94 extern Lisp_Object Qevent_symbol_element_mask;
95 extern Lisp_Object Qfile_exists_p;
96 92
97 /* non-zero if inside `load' */ 93 /* non-zero if inside `load' */
98 int load_in_progress; 94 int load_in_progress;
99 static Lisp_Object Qload_in_progress; 95 static Lisp_Object Qload_in_progress;
100 96